Skip to content

Commit 31ba62c

Browse files
committed
Fix typos in comments.
CharSyam
1 parent 8f2977b commit 31ba62c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/backend/access/transam/multixact.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ GetNewMultiXactId(int nmembers, MultiXactOffset *offset)
11261126
/*
11271127
* To avoid swamping the postmaster with signals, we issue the autovac
11281128
* request only when crossing a segment boundary. With default
1129-
* compilation settings that's rougly after 50k members. This still
1129+
* compilation settings that's roughly after 50k members. This still
11301130
* gives plenty of chances before we get into real trouble.
11311131
*/
11321132
if ((MXOffsetToMemberPage(nextOffset) / SLRU_PAGES_PER_SEGMENT) !=

src/backend/access/transam/parallel.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ HandleParallelMessage(ParallelContext *pcxt, int i, StringInfo msg)
775775
errctx.previous = pcxt->error_context_stack;
776776
error_context_stack = &errctx;
777777

778-
/* Parse ErrorReponse or NoticeResponse. */
778+
/* Parse ErrorResponse or NoticeResponse. */
779779
pq_parse_errornotice(msg, &edata);
780780

781781
/* Death of a worker isn't enough justification for suicide. */

src/backend/executor/nodeGather.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ ExecEndGather(GatherState *node)
193193
* gather_getnext
194194
*
195195
* Get the next tuple from shared memory queue. This function
196-
* is reponsible for fetching tuples from all the queues associated
196+
* is responsible for fetching tuples from all the queues associated
197197
* with worker backends used in Gather node execution and if there is
198198
* no data available from queues or no worker is available, it does
199199
* fetch the data from local node.

src/backend/parser/parse_utilcmd.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ transformCreateStmt(CreateStmt *stmt, const char *queryString)
282282
if (like_found)
283283
{
284284
/*
285-
* To match INHERITS, the existance of any LIKE table with OIDs
285+
* To match INHERITS, the existence of any LIKE table with OIDs
286286
* causes the new table to have oids. For the same reason,
287287
* WITH/WITHOUT OIDs is also ignored with LIKE. We prepend
288288
* because the first oid option list entry is honored. Our

0 commit comments

Comments
 (0)