File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1515 *
1616 *
1717 * IDENTIFICATION
18- * $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.85 2005/03/16 21:38:07 tgl Exp $
18+ * $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.86 2005/03/17 15:25:51 tgl Exp $
1919 *
2020 *-------------------------------------------------------------------------
2121 */
5151 * Suppose we have a query such as retrieve (EMP.name) and we have
5252 * a single SeqScan node in the query plan.
5353 *
54- * At ExecStart ()
54+ * At ExecutorStart ()
5555 * ----------------
5656 * - InitPlan() calls ExecCreateTupleTable() to create the tuple
5757 * table which will hold tuples processed by the executor.
6161 * table for the tuples returned by the access methods and the
6262 * tuples resulting from performing target list projections.
6363 *
64- * During ExecRun ()
64+ * During ExecutorRun ()
6565 * ----------------
6666 * - SeqNext() calls ExecStoreTuple() to place the tuple returned
6767 * by the access methods into the scan tuple slot.
6868 *
6969 * - ExecSeqScan() calls ExecStoreTuple() to take the result
7070 * tuple from ExecProject() and place it into the result tuple slot.
7171 *
72- * - ExecutePlan() calls ExecRetrieve() which gets the tuple out of
73- * the slot passed to it (by direct access to slot->val, which is
74- * ugly but not worth changing). this tuple is then returned .
72+ * - ExecutePlan() calls ExecSelect(), which passes the result slot
73+ * to printtup(), which uses slot_getallattrs() to extract the
74+ * individual Datums for printing .
7575 *
76- * At ExecEnd ()
76+ * At ExecutorEnd ()
7777 * ----------------
7878 * - EndPlan() calls ExecDropTupleTable() to clean up any remaining
7979 * tuples left over from executing the query.
You can’t perform that action at this time.
0 commit comments