Fix wrong/misleading comments, be more consistent about where to call
authorTom Lane
Sun, 12 Jan 2003 22:01:38 +0000 (22:01 +0000)
committerTom Lane
Sun, 12 Jan 2003 22:01:38 +0000 (22:01 +0000)
ExecAssignResultTypeFromTL().

src/backend/executor/nodeFunctionscan.c
src/backend/executor/nodeGroup.c
src/backend/executor/nodeIndexscan.c
src/backend/executor/nodeSeqscan.c
src/backend/executor/nodeSubqueryscan.c
src/backend/executor/nodeTidscan.c

index 78f66523d51d7170b55b851c8aabcb4223ce8f58..cb30717893c78c6f9512ba58e6431f3148254916 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/nodeFunctionscan.c,v 1.16 2002/12/15 16:17:46 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/nodeFunctionscan.c,v 1.17 2003/01/12 22:01:38 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -247,7 +247,7 @@ ExecInitFunctionScan(FunctionScan *node, EState *estate)
    scanstate->ss.ps.ps_TupFromTlist = false;
 
    /*
-    * initialize tuple type
+    * Initialize result tuple type and projection info.
     */
    ExecAssignResultTypeFromTL(&scanstate->ss.ps);
    ExecAssignProjectionInfo(&scanstate->ss.ps);
index b480e388a2119aef3ec0beb7b41306236d92c5c0..6ec0eb771cefa6325a28e39a7619acb5da0942a8 100644 (file)
@@ -15,7 +15,7 @@
  *   locate group boundaries.
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.54 2003/01/10 23:54:24 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/nodeGroup.c,v 1.55 2003/01/12 22:01:38 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -180,8 +180,7 @@ ExecInitGroup(Group *node, EState *estate)
    ExecAssignScanTypeFromOuterPlan(&grpstate->ss);
 
    /*
-    * Initialize tuple type for both result and scan. This node does no
-    * projection
+    * Initialize result tuple type and projection info.
     */
    ExecAssignResultTypeFromTL(&grpstate->ss.ps);
    ExecAssignProjectionInfo(&grpstate->ss.ps);
index a7cfce15b4cbee70ad136cc2b72ef78d588064b5..ad8680d0ff418f1a22b899e429490486c0143710 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.76 2002/12/18 00:14:24 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.77 2003/01/12 22:01:38 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -583,9 +583,9 @@ ExecInitIndexScan(IndexScan *node, EState *estate)
    ExecInitScanTupleSlot(estate, &indexstate->ss);
 
    /*
-    * initialize projection info.  result type comes from scan desc
-    * below..
+    * Initialize result tuple type and projection info.
     */
+   ExecAssignResultTypeFromTL(&indexstate->ss.ps);
    ExecAssignProjectionInfo(&indexstate->ss.ps);
 
    /*
@@ -893,7 +893,6 @@ ExecInitIndexScan(IndexScan *node, EState *estate)
     * get the scan type from the relation descriptor.
     */
    ExecAssignScanType(&indexstate->ss, RelationGetDescr(currentRelation), false);
-   ExecAssignResultTypeFromTL(&indexstate->ss.ps);
 
    /*
     * open the index relations and initialize relation and scan
index 6628a9eecbe2552bac3e68d28b2019b55a51d7ea..713dd76234dba9333723033df0a278d539357649 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/nodeSeqscan.c,v 1.41 2002/12/15 16:17:46 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/nodeSeqscan.c,v 1.42 2003/01/12 22:01:38 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -229,7 +229,7 @@ ExecInitSeqScan(SeqScan *node, EState *estate)
    scanstate->ps.ps_TupFromTlist = false;
 
    /*
-    * initialize tuple type
+    * Initialize result tuple type and projection info.
     */
    ExecAssignResultTypeFromTL(&scanstate->ps);
    ExecAssignProjectionInfo(&scanstate->ps);
index 4466ef342193f5b231df66a1ae541e0c52f99652..c5ad1e9cd5fff8f0e460312fe9f50b106869fecd 100644 (file)
@@ -12,7 +12,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/nodeSubqueryscan.c,v 1.16 2002/12/15 16:17:46 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/nodeSubqueryscan.c,v 1.17 2003/01/12 22:01:38 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -189,7 +189,7 @@ ExecInitSubqueryScan(SubqueryScan *node, EState *estate)
    subquerystate->ss.ps.ps_TupFromTlist = false;
 
    /*
-    * initialize tuple type
+    * Initialize result tuple type and projection info.
     */
    ExecAssignResultTypeFromTL(&subquerystate->ss.ps);
    ExecAssignProjectionInfo(&subquerystate->ss.ps);
index 7e35bc07cd71375b161bbc324ae021e553269eca..3a51057f282a852fa7a33bb87cf61db4448653a6 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.30 2002/12/15 16:17:46 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.31 2003/01/12 22:01:38 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -384,9 +384,9 @@ ExecInitTidScan(TidScan *node, EState *estate)
    ExecInitScanTupleSlot(estate, &tidstate->ss);
 
    /*
-    * initialize projection info.  result type comes from scan desc
-    * below..
+    * Initialize result tuple type and projection info.
     */
+   ExecAssignResultTypeFromTL(&tidstate->ss.ps);
    ExecAssignProjectionInfo(&tidstate->ss.ps);
 
    /*
@@ -431,7 +431,6 @@ ExecInitTidScan(TidScan *node, EState *estate)
     * get the scan type from the relation descriptor.
     */
    ExecAssignScanType(&tidstate->ss, RelationGetDescr(currentRelation), false);
-   ExecAssignResultTypeFromTL(&tidstate->ss.ps);
 
    /*
     * if there are some PARAM_EXEC in skankeys then force tid rescan on