1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +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:
Neil Conway
2004-09-24 01:36:37 +00:00
parent 1d1b8191ce
commit be8eafa09d
5 changed files with 14 additions and 16 deletions

View File

@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.44 2004/08/29 04:12:31 momjian Exp $
* $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.45 2004/09/24 01:36:30 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@ -293,7 +293,7 @@ ExecProcNode(PlanState *node)
break;
case T_AppendState:
result = ExecProcAppend((AppendState *) node);
result = ExecAppend((AppendState *) node);
break;
/*