From: Tom Lane Date: Sat, 3 Oct 2015 14:59:42 +0000 (-0400) Subject: Add missing "static" specifier. X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=bf686796a055a8bd4abc9765763eb675a0428473;p=users%2Frhaas%2Fpostgres.git Add missing "static" specifier. Per buildfarm (pademelon, at least, doesn't like this). --- diff --git a/src/backend/executor/nodeGather.c b/src/backend/executor/nodeGather.c index 735dbaa222..c689a4d17a 100644 --- a/src/backend/executor/nodeGather.c +++ b/src/backend/executor/nodeGather.c @@ -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;