diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-03-25 16:08:03 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-03-25 16:08:03 +0900 |
commit | a1999a01bb56c5f5451116abe61b892b2eec5e49 (patch) | |
tree | 1df99c815f9d6f7057748b841bf4297d6f6a5329 /src/backend/executor/execMain.c | |
parent | 438fc4a39c3905b7af88bb848bc5aeb1308a017d (diff) | |
download | postgresql-a1999a01bb56c5f5451116abe61b892b2eec5e49.tar.gz postgresql-a1999a01bb56c5f5451116abe61b892b2eec5e49.zip |
Sanitize the term "combo CID" in code comments
Combo CIDs were referred in the code comments using different terms
across various places of the code, so unify a bit the term used with
what is currently in use in some of the READMEs.
Author: "Hou, Zhijie"
Discussion: https://postgr.es/m/1d42865c91404f46af4562532fdbea31@G08CNEXMBPEKD05.g08.fujitsu.local
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index c74ce36ffba..8de78ada631 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -149,7 +149,7 @@ standard_ExecutorStart(QueryDesc *queryDesc, int eflags) * planned to non-temporary tables. EXPLAIN is considered read-only. * * Don't allow writes in parallel mode. Supporting UPDATE and DELETE - * would require (a) storing the combocid hash in shared memory, rather + * would require (a) storing the combo CID hash in shared memory, rather * than synchronizing it just once at the start of parallelism, and (b) an * alternative to heap_update()'s reliance on xmax for mutual exclusion. * INSERT may have no such troubles, but we forbid it to simplify the |