diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2023-08-15 17:45:00 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2023-08-15 17:45:00 +0900 |
commit | 89be0b89ae60c63856fd26d82a104781540e2312 (patch) | |
tree | b26257839faa957dfc06b2b93fecec0c453f9f31 /contrib/postgres_fdw/postgres_fdw.c | |
parent | 9e9931d2bf40e2fea447d779c2e133c2c1256ef3 (diff) | |
download | postgresql-89be0b89ae60c63856fd26d82a104781540e2312.tar.gz postgresql-89be0b89ae60c63856fd26d82a104781540e2312.zip |
Fix code indentation vioaltion introduced in commit 9e9931d2b.
Per buildfarm member koel
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index ef58b8b0ea2..1393716587e 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -6087,7 +6087,8 @@ add_paths_with_pathkeys_for_rel(PlannerInfo *root, RelOptInfo *rel, useful_pathkeys, rel->lateral_relids, sorted_epq_path, - NIL, /* no fdw_restrictinfo list */ + NIL, /* no fdw_restrictinfo + * list */ NIL)); else add_path(rel, (Path *) @@ -6875,7 +6876,8 @@ add_foreign_ordered_paths(PlannerInfo *root, RelOptInfo *input_rel, total_cost, root->sort_pathkeys, NULL, /* no extra plan */ - NIL, /* no fdw_restrictinfo list */ + NIL, /* no fdw_restrictinfo + * list */ fdw_private); /* and add it to the ordered_rel */ @@ -6991,7 +6993,8 @@ add_foreign_final_paths(PlannerInfo *root, RelOptInfo *input_rel, path->total_cost, path->pathkeys, NULL, /* no extra plan */ - NIL, /* no fdw_restrictinfo list */ + NIL, /* no fdw_restrictinfo + * list */ NIL); /* no fdw_private */ /* and add it to the final_rel */ @@ -7112,7 +7115,7 @@ add_foreign_final_paths(PlannerInfo *root, RelOptInfo *input_rel, total_cost, pathkeys, NULL, /* no extra plan */ - NIL, /* no fdw_restrictinfo list */ + NIL, /* no fdw_restrictinfo list */ fdw_private); /* and add it to the final_rel */ |