diff options
Diffstat (limited to 'src/backend/executor/nodeSort.c')
-rw-r--r-- | src/backend/executor/nodeSort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeSort.c b/src/backend/executor/nodeSort.c index 73f16c9abaa..0d2acb665af 100644 --- a/src/backend/executor/nodeSort.c +++ b/src/backend/executor/nodeSort.c @@ -214,8 +214,8 @@ ExecInitSort(Sort *node, EState *estate, int eflags) ExecCreateScanSlotFromOuterPlan(estate, &sortstate->ss); /* - * Initialize return slot and type. No need to initialize projection info because - * this node doesn't do projections. + * Initialize return slot and type. No need to initialize projection info + * because this node doesn't do projections. */ ExecInitResultTupleSlotTL(estate, &sortstate->ss.ps); sortstate->ss.ps.ps_ProjInfo = NULL; |