diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-04-19 11:32:30 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-04-19 11:32:30 +0900 |
commit | 7ef8b52cf079ef3ace4575f7b97c2d6f80463b4f (patch) | |
tree | 9dd7a216019831ea53951e4e08aff564b634dba8 /src/backend/executor/nodeIncrementalSort.c | |
parent | c731f9187b5fd7038b04ba60703d3cace1806366 (diff) | |
download | postgresql-7ef8b52cf079ef3ace4575f7b97c2d6f80463b4f.tar.gz postgresql-7ef8b52cf079ef3ace4575f7b97c2d6f80463b4f.zip |
Fix typos and grammar in comments and docs
Author: Justin Pryzby
Discussion: https://postgr.es/m/20210416070310.GG3315@telsasoft.com
Diffstat (limited to 'src/backend/executor/nodeIncrementalSort.c')
-rw-r--r-- | src/backend/executor/nodeIncrementalSort.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeIncrementalSort.c b/src/backend/executor/nodeIncrementalSort.c index 459c879f0bb..18f246a8233 100644 --- a/src/backend/executor/nodeIncrementalSort.c +++ b/src/backend/executor/nodeIncrementalSort.c @@ -661,9 +661,9 @@ ExecIncrementalSort(PlanState *pstate) /* * We're in full sort mode accumulating a minimum number of tuples * and not checking for prefix key equality yet, so we can't - * assume the group pivot tuple will reamin the same -- unless + * assume the group pivot tuple will remain the same -- unless * we're using a minimum group size of 1, in which case the pivot - * is obviously still the pviot. + * is obviously still the pivot. */ if (nTuples != minGroupSize) ExecClearTuple(node->group_pivot); @@ -1162,7 +1162,7 @@ ExecReScanIncrementalSort(IncrementalSortState *node) } /* - * If chgParam of subnode is not null, theni the plan will be re-scanned + * If chgParam of subnode is not null, then the plan will be re-scanned * by the first ExecProcNode. */ if (outerPlan->chgParam == NULL) |