Skip to content

Commit 5d64ca8

Browse files
Etsuro Fujitapull[bot]
authored andcommitted
Fix code indentation vioaltion introduced in commit 9e9931d.
Per buildfarm member koel
1 parent d4a5ae4 commit 5d64ca8

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

contrib/postgres_fdw/postgres_fdw.c

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6087,7 +6087,8 @@ add_paths_with_pathkeys_for_rel(PlannerInfo *root, RelOptInfo *rel,
60876087
useful_pathkeys,
60886088
rel->lateral_relids,
60896089
sorted_epq_path,
6090-
NIL, /* no fdw_restrictinfo list */
6090+
NIL, /* no fdw_restrictinfo
6091+
* list */
60916092
NIL));
60926093
else
60936094
add_path(rel, (Path *)
@@ -6875,7 +6876,8 @@ add_foreign_ordered_paths(PlannerInfo *root, RelOptInfo *input_rel,
68756876
total_cost,
68766877
root->sort_pathkeys,
68776878
NULL, /* no extra plan */
6878-
NIL, /* no fdw_restrictinfo list */
6879+
NIL, /* no fdw_restrictinfo
6880+
* list */
68796881
fdw_private);
68806882

68816883
/* and add it to the ordered_rel */
@@ -6991,7 +6993,8 @@ add_foreign_final_paths(PlannerInfo *root, RelOptInfo *input_rel,
69916993
path->total_cost,
69926994
path->pathkeys,
69936995
NULL, /* no extra plan */
6994-
NIL, /* no fdw_restrictinfo list */
6996+
NIL, /* no fdw_restrictinfo
6997+
* list */
69956998
NIL); /* no fdw_private */
69966999

69977000
/* and add it to the final_rel */
@@ -7112,7 +7115,7 @@ add_foreign_final_paths(PlannerInfo *root, RelOptInfo *input_rel,
71127115
total_cost,
71137116
pathkeys,
71147117
NULL, /* no extra plan */
7115-
NIL, /* no fdw_restrictinfo list */
7118+
NIL, /* no fdw_restrictinfo list */
71167119
fdw_private);
71177120

71187121
/* and add it to the final_rel */

0 commit comments

Comments
 (0)