Also fix reindent inconsistencies with fake_fdw.c

pull/3327/head
Philip Dubé 2019-12-20 08:27:47 +00:00
parent 08eb0ade31
commit f007b7f91d
1 changed files with 12 additions and 3 deletions

View File

@ -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 */
}