diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-07-19 15:39:06 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2018-07-19 15:39:06 +0300 |
commit | 405cb356d6104eccf34acc2e4944d711b0961c7d (patch) | |
tree | c0702145068302ad0495c8deec596ae8b5e4070b /src/backend/executor/nodeAppend.c | |
parent | 5220bb7533f9891b1e071da6461d5c387e8f7b09 (diff) | |
download | postgresql-405cb356d6104eccf34acc2e4944d711b0961c7d.tar.gz postgresql-405cb356d6104eccf34acc2e4944d711b0961c7d.zip |
Fix comment.
This comment was copy-pasted from nodeAppend.c to nodeMergeAppend.c, but
while committing 5220bb7533, I modified wrong copy of it.
Spotted by David Rowley
Diffstat (limited to 'src/backend/executor/nodeAppend.c')
-rw-r--r-- | src/backend/executor/nodeAppend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/nodeAppend.c b/src/backend/executor/nodeAppend.c index e7188b2d310..5ce4fb43e1a 100644 --- a/src/backend/executor/nodeAppend.c +++ b/src/backend/executor/nodeAppend.c @@ -151,7 +151,7 @@ ExecInitAppend(Append *node, EState *estate, int eflags) /* * The case where no subplans survive pruning must be handled * specially. The problem here is that code in explain.c requires - * a MergeAppend to have at least one subplan in order for it to + * an Append to have at least one subplan in order for it to * properly determine the Vars in that subplan's targetlist. We * sidestep this issue by just initializing the first subplan and * setting as_whichplan to NO_MATCHING_SUBPLANS to indicate that |