mirror of
https://github.com/postgres/postgres.git
synced 2025-04-21 12:05:57 +03:00
Fix typos in comments.
CharSyam
This commit is contained in:
parent
8f2977b3ec
commit
31ba62ce32
@ -1126,7 +1126,7 @@ GetNewMultiXactId(int nmembers, MultiXactOffset *offset)
|
|||||||
/*
|
/*
|
||||||
* To avoid swamping the postmaster with signals, we issue the autovac
|
* To avoid swamping the postmaster with signals, we issue the autovac
|
||||||
* request only when crossing a segment boundary. With default
|
* 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.
|
* gives plenty of chances before we get into real trouble.
|
||||||
*/
|
*/
|
||||||
if ((MXOffsetToMemberPage(nextOffset) / SLRU_PAGES_PER_SEGMENT) !=
|
if ((MXOffsetToMemberPage(nextOffset) / SLRU_PAGES_PER_SEGMENT) !=
|
||||||
|
@ -775,7 +775,7 @@ HandleParallelMessage(ParallelContext *pcxt, int i, StringInfo msg)
|
|||||||
errctx.previous = pcxt->error_context_stack;
|
errctx.previous = pcxt->error_context_stack;
|
||||||
error_context_stack = &errctx;
|
error_context_stack = &errctx;
|
||||||
|
|
||||||
/* Parse ErrorReponse or NoticeResponse. */
|
/* Parse ErrorResponse or NoticeResponse. */
|
||||||
pq_parse_errornotice(msg, &edata);
|
pq_parse_errornotice(msg, &edata);
|
||||||
|
|
||||||
/* Death of a worker isn't enough justification for suicide. */
|
/* Death of a worker isn't enough justification for suicide. */
|
||||||
|
@ -193,7 +193,7 @@ ExecEndGather(GatherState *node)
|
|||||||
* gather_getnext
|
* gather_getnext
|
||||||
*
|
*
|
||||||
* Get the next tuple from shared memory queue. This function
|
* 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
|
* with worker backends used in Gather node execution and if there is
|
||||||
* no data available from queues or no worker is available, it does
|
* no data available from queues or no worker is available, it does
|
||||||
* fetch the data from local node.
|
* fetch the data from local node.
|
||||||
|
@ -282,7 +282,7 @@ transformCreateStmt(CreateStmt *stmt, const char *queryString)
|
|||||||
if (like_found)
|
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,
|
* causes the new table to have oids. For the same reason,
|
||||||
* WITH/WITHOUT OIDs is also ignored with LIKE. We prepend
|
* WITH/WITHOUT OIDs is also ignored with LIKE. We prepend
|
||||||
* because the first oid option list entry is honored. Our
|
* because the first oid option list entry is honored. Our
|
||||||
|
Loading…
x
Reference in New Issue
Block a user