Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b199eb8

Browse files
committed
1 parent 49cd2b9 commit b199eb8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/backend/access/index/indexam.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ index_open(Oid relationId, LOCKMODE lockmode)
142142
}
143143

144144
/* ----------------
145-
* try_index_open - open a index relation by relation OID
145+
* try_index_open - open an index relation by relation OID
146146
*
147147
* Same as index_open, except return NULL instead of failing
148148
* if the relation does not exist.

src/backend/commands/explain.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2395,7 +2395,7 @@ show_sort_keys(SortState *sortstate, List *ancestors, ExplainState *es)
23952395
}
23962396

23972397
/*
2398-
* Show the sort keys for a IncrementalSort node.
2398+
* Show the sort keys for an IncrementalSort node.
23992399
*/
24002400
static void
24012401
show_incremental_sort_keys(IncrementalSortState *incrsortstate,

src/backend/replication/logical/worker.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ static TransactionId stream_xid = InvalidTransactionId;
332332
*/
333333
static uint32 parallel_stream_nchanges = 0;
334334

335-
/* Are we initializing a apply worker? */
335+
/* Are we initializing an apply worker? */
336336
bool InitializingApplyWorker = false;
337337

338338
/*

src/backend/utils/activity/wait_event.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ uint32 *my_wait_event_info = &local_my_wait_event_info;
4949
* Hash tables for storing custom wait event ids and their names in
5050
* shared memory.
5151
*
52-
* WaitEventExtensionHashById is used to find the name from a event id.
52+
* WaitEventExtensionHashById is used to find the name from an event id.
5353
* Any backend can search it to find custom wait events.
5454
*
5555
* WaitEventExtensionHashByName is used to find the event ID from a name.

src/test/modules/test_ginpostinglist/expected/test_ginpostinglist.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CREATE EXTENSION test_ginpostinglist;
22
--
33
-- All the logic is in the test_ginpostinglist() function. It will throw
4-
-- a error if something fails.
4+
-- an error if something fails.
55
--
66
SELECT test_ginpostinglist();
77
NOTICE: testing with (0, 1), (0, 2), max 14 bytes

src/test/modules/test_ginpostinglist/sql/test_ginpostinglist.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ CREATE EXTENSION test_ginpostinglist;
22

33
--
44
-- All the logic is in the test_ginpostinglist() function. It will throw
5-
-- a error if something fails.
5+
-- an error if something fails.
66
--
77
SELECT test_ginpostinglist();

0 commit comments

Comments
 (0)