diff --git a/src/backend/distributed/test/fake_fdw.c b/src/backend/distributed/test/fake_fdw.c index 22a4960e1..e8c011820 100644 --- a/src/backend/distributed/test/fake_fdw.c +++ b/src/backend/distributed/test/fake_fdw.c @@ -118,7 +118,10 @@ FakeGetForeignPlan(PlannerInfo *root, RelOptInfo *baserel, Oid foreigntableid, * FakeBeginForeignScan begins the fake plan (i.e. does nothing). */ static void -FakeBeginForeignScan(ForeignScanState *node, int eflags) { } +FakeBeginForeignScan(ForeignScanState *node, int eflags) +{ + /* this comment is for indentation consistency */ +} /* @@ -138,11 +141,17 @@ FakeIterateForeignScan(ForeignScanState *node) * FakeReScanForeignScan restarts the fake plan (i.e. does nothing). */ static void -FakeReScanForeignScan(ForeignScanState *node) { } +FakeReScanForeignScan(ForeignScanState *node) +{ + /* this comment is for indentation consistency */ +} /* * FakeEndForeignScan ends the fake plan (i.e. does nothing). */ static void -FakeEndForeignScan(ForeignScanState *node) { } +FakeEndForeignScan(ForeignScanState *node) +{ + /* this comment is for indentation consistency */ +}