Skip to content

Commit 8b1d268

Browse files
committed
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
1 parent 164ed15 commit 8b1d268

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/executor/nodeSeqscan.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ SeqNext(SeqScanState *node)
6565
if (scandesc == NULL)
6666
{
6767
/*
68-
* We reach here if the scan is not parallel, or if we're executing a
69-
* scan that was intended to be parallel serially.
68+
* We reach here if the scan is not parallel, or if we're serially
69+
* executing a scan that was planned to be parallel.
7070
*/
7171
scandesc = heap_beginscan(node->ss.ss_currentRelation,
7272
estate->es_snapshot,

0 commit comments

Comments
 (0)