Add missing "static" markers.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Jan 2018 19:32:28 +0000 (14:32 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Jan 2018 19:32:28 +0000 (14:32 -0500)
Per buildfarm.

src/backend/executor/nodeModifyTable.c
src/bin/pg_dump/pg_dump.c

index 828e1b0015bc1a27637f574c32798af1dd18cf71..2a8ecbd830da4b8c633db762b664dac479252846 100644 (file)
@@ -1711,7 +1711,7 @@ ExecSetupTransitionCaptureState(ModifyTableState *mtstate, EState *estate)
  * 1. For update-tuple-routing.
  * 2. For capturing tuples in transition tables.
  */
-void
+static void
 ExecSetupChildParentMapForSubplan(ModifyTableState *mtstate)
 {
        ResultRelInfo *targetRelInfo = getTargetResultRelInfo(mtstate);
index c34d9907299dbbc90ce49dd211f7e7ddf4cb7688..d047e4a49bc6c1a6cf9693db4fb6604fefea26a3 100644 (file)
@@ -16431,7 +16431,7 @@ dumpIndex(Archive *fout, IndxInfo *indxinfo)
  * dumpIndexAttach
  *       write out to fout a partitioned-index attachment clause
  */
-void
+static void
 dumpIndexAttach(Archive *fout, IndexAttachInfo *attachinfo)
 {
        if (fout->dopt->dataOnly)