|
55 | 55 | *of ExecInitNode() is a plan state tree built with the same structure |
56 | 56 | *as the underlying plan tree. |
57 | 57 | * |
58 | | - * * Then whenExecRun() is called, it calls ExecutePlan() which calls |
| 58 | + * * Then whenExecutorRun() is called, it calls ExecutePlan() which calls |
59 | 59 | *ExecProcNode() repeatedly on the top node of the plan state tree. |
60 | 60 | *Each time this happens, ExecProcNode() will end up calling |
61 | 61 | *ExecNestLoop(), which calls ExecProcNode() on its subplans. |
|
65 | 65 | *form the tuples it returns. |
66 | 66 | * |
67 | 67 | * * Eventually ExecSeqScan() stops returning tuples and the nest |
68 | | - *loop join ends. Lastly,ExecEnd() calls ExecEndNode() which |
| 68 | + *loop join ends. Lastly,ExecutorEnd() calls ExecEndNode() which |
69 | 69 | *calls ExecEndNestLoop() which in turn calls ExecEndNode() on |
70 | 70 | *its subplans which result in ExecEndSeqScan(). |
71 | 71 | * |
|