1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Add missing "static" specifier.

Per buildfarm (pademelon, at least, doesn't like this).
This commit is contained in:
Tom Lane
2015-10-03 10:59:42 -04:00
parent 920218cbc0
commit bf686796a0

View File

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