diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-07-19 16:08:09 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-07-19 16:08:09 +0300 |
commit | 99fdebaf2da9160ec49a80854dc99e46722a9a03 (patch) | |
tree | 42512e5f581748561818c98b95da6959d444882c /src/backend/executor/nodeIndexscan.c | |
parent | 405cb356d6104eccf34acc2e4944d711b0961c7d (diff) | |
download | postgresql-99fdebaf2da9160ec49a80854dc99e46722a9a03.tar.gz postgresql-99fdebaf2da9160ec49a80854dc99e46722a9a03.zip |
Rephrase a few comments for clarity.
I was confused by what "intended to be parallel serially" meant, until
Robert Haas and David G. Johnston explained it. Rephrase the comment to
make it more clear, using David's suggested wording.
Discussion: https://www.postgresql.org/message-id/1fec9022-41e8-e484-70ce-2179b08c2092%40iki.fi
Diffstat (limited to 'src/backend/executor/nodeIndexscan.c')
-rw-r--r-- | src/backend/executor/nodeIndexscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeIndexscan.c b/src/backend/executor/nodeIndexscan.c index d6012192a14..10891bc3f46 100644 --- a/src/backend/executor/nodeIndexscan.c +++ b/src/backend/executor/nodeIndexscan.c @@ -108,7 +108,7 @@ IndexNext(IndexScanState *node) { /* * We reach here if the index scan is not parallel, or if we're - * executing a index scan that was intended to be parallel serially. + * serially executing an index scan that was planned to be parallel. */ scandesc = index_beginscan(node->ss.ss_currentRelation, node->iss_RelationDesc, @@ -214,7 +214,7 @@ IndexNextWithReorder(IndexScanState *node) { /* * We reach here if the index scan is not parallel, or if we're - * executing a index scan that was intended to be parallel serially. + * serially executing an index scan that was planned to be parallel. */ scandesc = index_beginscan(node->ss.ss_currentRelation, node->iss_RelationDesc, |