aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2014-10-13 16:54:38 -0400
committerBruce Momjian <bruce@momjian.us>2014-10-13 16:54:38 -0400
commitfe65280fea7e3c930727ed74328613a4410e487a (patch)
treeed114201f1fb53815a70808327d91a62cbc753fd /src
parent7ab96d18f94d5e8c2deab8a6126632a194ea32f1 (diff)
downloadpostgresql-fe65280fea7e3c930727ed74328613a4410e487a.tar.gz
postgresql-fe65280fea7e3c930727ed74328613a4410e487a.zip
C comments: adjust execTuples.c for new structure
Report by Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r--src/backend/executor/execTuples.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c
index 66515f71a25..7f43441eb66 100644
--- a/src/backend/executor/execTuples.c
+++ b/src/backend/executor/execTuples.c
@@ -70,14 +70,7 @@
* - ExecSeqScan() calls ExecStoreTuple() to take the result
* tuple from ExecProject() and place it into the result tuple slot.
*
- * - ExecutePlan() calls ExecSelect(), which passes the result slot
- * to printtup(), which uses slot_getallattrs() to extract the
- * individual Datums for printing.
- *
- * At ExecutorEnd()
- * ----------------
- * - EndPlan() calls ExecResetTupleTable() to clean up any remaining
- * tuples left over from executing the query.
+ * - ExecutePlan() calls the output function.
*
* The important thing to watch in the executor code is how pointers
* to the slots containing tuples are passed instead of the tuples