Add missing "static" specifier.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 3 Oct 2015 14:59:42 +0000 (10:59 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 3 Oct 2015 14:59:42 +0000 (10:59 -0400)
Per buildfarm (pademelon, at least, doesn't like this).

src/backend/executor/nodeGather.c

index 735dbaa222643aa2b06ae46513a778eb59e1bba4..c689a4d17a0316b9498338f04b6df1185129ffa1 100644 (file)
@@ -179,7 +179,7 @@ ExecEndGather(GatherState *node)
  * no data available from queues or no worker is available, it does
  * fetch the data from local node.
  */
-TupleTableSlot *
+static TupleTableSlot *
 gather_getnext(GatherState *gatherstate)
 {
    PlanState  *outerPlan;