From be8eafa09d1ce3669fc9bc11633e536c64543284 Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Fri, 24 Sep 2004 01:36:37 +0000 Subject: 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. --- src/include/executor/nodeAppend.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/executor/nodeAppend.h') 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); -- cgit v1.2.3