diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c index 544765c98d85c888971fbe5c219473a366901111..9571d0760a191efd83ae230c98e64cf1a1f1d7f0 100644 --- a/src/backend/access/transam/multixact.c +++ b/src/backend/access/transam/multixact.c @@ -1126,7 +1126,7 @@ GetNewMultiXactId(int nmembers, MultiXactOffset *offset) /* * To avoid swamping the postmaster with signals, we issue the autovac * request only when crossing a segment boundary. With default - * compilation settings that's rougly after 50k members. This still + * compilation settings that's roughly after 50k members. This still * gives plenty of chances before we get into real trouble. */ if ((MXOffsetToMemberPage(nextOffset) / SLRU_PAGES_PER_SEGMENT) != diff --git a/src/backend/access/transam/parallel.c b/src/backend/access/transam/parallel.c index 0085987f32439f9cc35b4c1609f4e308aba9bad0..35a873de6bac4aa5425ce173fed1eaa5e64d1bb1 100644 --- a/src/backend/access/transam/parallel.c +++ b/src/backend/access/transam/parallel.c @@ -775,7 +775,7 @@ HandleParallelMessage(ParallelContext *pcxt, int i, StringInfo msg) errctx.previous = pcxt->error_context_stack; error_context_stack = &errctx; - /* Parse ErrorReponse or NoticeResponse. */ + /* Parse ErrorResponse or NoticeResponse. */ pq_parse_errornotice(msg, &edata); /* Death of a worker isn't enough justification for suicide. */ diff --git a/src/backend/executor/nodeGather.c b/src/backend/executor/nodeGather.c index 69df9e301c27fc5f1c331686f4b36777ed23ac79..ef810a5834ddaa6e4414985e1345da92acb919f6 100644 --- a/src/backend/executor/nodeGather.c +++ b/src/backend/executor/nodeGather.c @@ -193,7 +193,7 @@ ExecEndGather(GatherState *node) * gather_getnext * * Get the next tuple from shared memory queue. This function - * is reponsible for fetching tuples from all the queues associated + * is responsible for fetching tuples from all the queues associated * with worker backends used in Gather node execution and if there is * no data available from queues or no worker is available, it does * fetch the data from local node. diff --git a/src/backend/parser/parse_utilcmd.c b/src/backend/parser/parse_utilcmd.c index 14384d58dbe7ccfb58eaa4ec7ea835922e7936d5..344a40cf58e879ce3adc599cb2e39fbea7dac140 100644 --- a/src/backend/parser/parse_utilcmd.c +++ b/src/backend/parser/parse_utilcmd.c @@ -282,7 +282,7 @@ transformCreateStmt(CreateStmt *stmt, const char *queryString) if (like_found) { /* - * To match INHERITS, the existance of any LIKE table with OIDs + * To match INHERITS, the existence of any LIKE table with OIDs * causes the new table to have oids. For the same reason, * WITH/WITHOUT OIDs is also ignored with LIKE. We prepend * because the first oid option list entry is honored. Our