projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
920218c
)
Add missing "static" specifier.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Sat, 3 Oct 2015 14:59:42 +0000
(10:59 -0400)
committer
Tom 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
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/executor/nodeGather.c
b/src/backend/executor/nodeGather.c
index 735dbaa222643aa2b06ae46513a778eb59e1bba4..c689a4d17a0316b9498338f04b6df1185129ffa1 100644
(file)
--- 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;