diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-09-26 13:12:22 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-09-26 13:12:22 -0400 |
commit | 821fd903f9b7f5a8ca439b9b7cb6d2f54672582f (patch) | |
tree | 1244b05b6173863c07b1b4d8fa54a37aafe18f31 /src/backend/executor/execProcnode.c | |
parent | 21fb95da46bce8de3e149707c680d489b8a5ffb0 (diff) | |
download | postgresql-821fd903f9b7f5a8ca439b9b7cb6d2f54672582f.tar.gz postgresql-821fd903f9b7f5a8ca439b9b7cb6d2f54672582f.zip |
Update obsolete comments.
This was partially fixed by 57fdb2b0d835fe201434fc28bf5dabf83ada26d1,
back in 2005, but it missed a couple of spots.
YAMAMOTO Takashi
Diffstat (limited to 'src/backend/executor/execProcnode.c')
-rw-r--r-- | src/backend/executor/execProcnode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c index 8bdfad22223..284fc6a63b7 100644 --- a/src/backend/executor/execProcnode.c +++ b/src/backend/executor/execProcnode.c @@ -55,7 +55,7 @@ * of ExecInitNode() is a plan state tree built with the same structure * as the underlying plan tree. * - * * Then when ExecRun() is called, it calls ExecutePlan() which calls + * * Then when ExecutorRun() is called, it calls ExecutePlan() which calls * ExecProcNode() repeatedly on the top node of the plan state tree. * Each time this happens, ExecProcNode() will end up calling * ExecNestLoop(), which calls ExecProcNode() on its subplans. @@ -65,7 +65,7 @@ * form the tuples it returns. * * * Eventually ExecSeqScan() stops returning tuples and the nest - * loop join ends. Lastly, ExecEnd() calls ExecEndNode() which + * loop join ends. Lastly, ExecutorEnd() calls ExecEndNode() which * calls ExecEndNestLoop() which in turn calls ExecEndNode() on * its subplans which result in ExecEndSeqScan(). * |