aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeResult.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2009-09-27 21:10:53 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2009-09-27 21:10:53 +0000
commit421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7 (patch)
tree2c5a1cb881aff49aba26c282c98fb218be3ca7c7 /src/backend/executor/nodeResult.c
parentf92e8a4b5ee6a22252cbba012d629f5cefef913f (diff)
downloadpostgresql-421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7.tar.gz
postgresql-421d7d8edb1bef2c354fe27f2ef4c4e8b6c1faf7.zip
Remove no-longer-needed ExecCountSlots infrastructure.
Diffstat (limited to 'src/backend/executor/nodeResult.c')
-rw-r--r--src/backend/executor/nodeResult.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/backend/executor/nodeResult.c b/src/backend/executor/nodeResult.c
index e5173a65b5d..342a8a53189 100644
--- a/src/backend/executor/nodeResult.c
+++ b/src/backend/executor/nodeResult.c
@@ -38,7 +38,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeResult.c,v 1.43 2009/01/01 17:23:42 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeResult.c,v 1.44 2009/09/27 21:10:53 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -230,8 +230,6 @@ ExecInitResult(Result *node, EState *estate, int eflags)
resstate->ps.ps_TupFromTlist = false;
-#define RESULT_NSLOTS 1
-
/*
* tuple table initialization
*/
@@ -268,12 +266,6 @@ ExecInitResult(Result *node, EState *estate, int eflags)
return resstate;
}
-int
-ExecCountSlotsResult(Result *node)
-{
- return ExecCountSlotsNode(outerPlan(node)) + RESULT_NSLOTS;
-}
-
/* ----------------------------------------------------------------
* ExecEndResult
*