diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-06-07 16:57:08 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-06-07 16:57:08 -0400 |
commit | b5d69b7c22ee4c44b8bb99cfa0466ffaf3b5fab9 (patch) | |
tree | 56f15561f5aa454ce69a6f302c83b04f266d83db /src/backend/optimizer/plan/createplan.c | |
parent | 7247e243a803044a79a2828ced51b05765e049a0 (diff) | |
download | postgresql-b5d69b7c22ee4c44b8bb99cfa0466ffaf3b5fab9.tar.gz postgresql-b5d69b7c22ee4c44b8bb99cfa0466ffaf3b5fab9.zip |
pgindent run prior to branching v13.
pgperltidy and reformat-dat-files too, though those didn't
find anything to change.
Diffstat (limited to 'src/backend/optimizer/plan/createplan.c')
-rw-r--r-- | src/backend/optimizer/plan/createplan.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/optimizer/plan/createplan.c b/src/backend/optimizer/plan/createplan.c index 744eed187d4..eb9543f6add 100644 --- a/src/backend/optimizer/plan/createplan.c +++ b/src/backend/optimizer/plan/createplan.c @@ -2118,9 +2118,9 @@ create_agg_plan(PlannerInfo *root, AggPath *best_path) /* * Agg can project, so no need to be terribly picky about child tlist, but * we do need grouping columns to be available. We are a bit more careful - * with hash aggregate, where we explicitly request small tlist to minimize - * I/O needed for spilling (we can't be sure spilling won't be necessary, - * so we just do it every time). + * with hash aggregate, where we explicitly request small tlist to + * minimize I/O needed for spilling (we can't be sure spilling won't be + * necessary, so we just do it every time). */ flags = CP_LABEL_TLIST; @@ -2219,9 +2219,9 @@ create_groupingsets_plan(PlannerInfo *root, GroupingSetsPath *best_path) /* * Agg can project, so no need to be terribly picky about child tlist, but * we do need grouping columns to be available. We are a bit more careful - * with hash aggregate, where we explicitly request small tlist to minimize - * I/O needed for spilling (we can't be sure spilling won't be necessary, - * so we just do it every time). + * with hash aggregate, where we explicitly request small tlist to + * minimize I/O needed for spilling (we can't be sure spilling won't be + * necessary, so we just do it every time). */ flags = CP_LABEL_TLIST; |