diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2022-12-04 14:25:53 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2022-12-04 14:25:53 -0500 |
commit | 92c4dafe1eed511c5af92bcea5311cf627673377 (patch) | |
tree | 972939211522967a9f3aa78eee487771a26a7f24 /src/backend/optimizer/plan/setrefs.c | |
parent | e76913802c5347831aadc1513b59196bde6ec116 (diff) | |
download | postgresql-92c4dafe1eed511c5af92bcea5311cf627673377.tar.gz postgresql-92c4dafe1eed511c5af92bcea5311cf627673377.zip |
Re-pgindent a few files.
Just because I'm a neatnik, and I'm currently working on
code in this area. It annoys me to not be able to pgindent
my patches without working around unrelated changes.
Diffstat (limited to 'src/backend/optimizer/plan/setrefs.c')
-rw-r--r-- | src/backend/optimizer/plan/setrefs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/optimizer/plan/setrefs.c b/src/backend/optimizer/plan/setrefs.c index e67f0e3509b..399c1812d40 100644 --- a/src/backend/optimizer/plan/setrefs.c +++ b/src/backend/optimizer/plan/setrefs.c @@ -349,10 +349,10 @@ set_plan_references(PlannerInfo *root, Plan *plan) } /* Also fix up the information in PartitionPruneInfos. */ - foreach (lc, root->partPruneInfos) + foreach(lc, root->partPruneInfos) { PartitionPruneInfo *pruneinfo = lfirst(lc); - ListCell *l; + ListCell *l; pruneinfo->root_parent_relids = offset_relid_set(pruneinfo->root_parent_relids, rtoffset); |