mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
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.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user