From: Bruce Momjian <bruce@momjian.us>
Date: Mon, 13 Oct 2014 20:54:38 +0000 (-0400)
Subject: C comments: adjust execTuples.c for new structure
X-Git-Tag: REL9_5_ALPHA1~1363
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe65280fea7e3c930727ed74328613a4410e487a;p=postgresql

C comments: adjust execTuples.c for new structure

Report by Peter Geoghegan
---

diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c
index 66515f71a2..7f43441eb6 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