aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2004-09-24 01:36:37 +0000
committerNeil Conway <neilc@samurai.com>2004-09-24 01:36:37 +0000
commitbe8eafa09d1ce3669fc9bc11633e536c64543284 (patch)
tree42a8798e58aa36ef1232b2a0337edaa048f40827 /src/include/executor
parent1d1b8191ceda6f88d721cc7299aff010136e21cf (diff)
downloadpostgresql-be8eafa09d1ce3669fc9bc11633e536c64543284.tar.gz
postgresql-be8eafa09d1ce3669fc9bc11633e536c64543284.zip
ExecProcAppend() wasn't called ExecAppend() because the latter name was
formerly used in execMain. Since that is no longer the case, this patch renames ExecProcAppend() to ExecAppend() for the sake of consistency.
Diffstat (limited to 'src/include/executor')
-rw-r--r--src/include/executor/nodeAppend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/nodeAppend.h b/src/include/executor/nodeAppend.h
index 740681b9917..6819c809a2e 100644
--- a/src/include/executor/nodeAppend.h
+++ b/src/include/executor/nodeAppend.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/executor/nodeAppend.h,v 1.21 2004/08/29 04:13:06 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/executor/nodeAppend.h,v 1.22 2004/09/24 01:36:37 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@@ -18,7 +18,7 @@
extern int ExecCountSlotsAppend(Append *node);
extern AppendState *ExecInitAppend(Append *node, EState *estate);
-extern TupleTableSlot *ExecProcAppend(AppendState *node);
+extern TupleTableSlot *ExecAppend(AppendState *node);
extern void ExecEndAppend(AppendState *node);
extern void ExecReScanAppend(AppendState *node, ExprContext *exprCtxt);