diff options
Diffstat (limited to 'src/backend/executor/nodeIndexscan.c')
-rw-r--r-- | src/backend/executor/nodeIndexscan.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/executor/nodeIndexscan.c b/src/backend/executor/nodeIndexscan.c index a7cfce15b4c..ad8680d0ff4 100644 --- a/src/backend/executor/nodeIndexscan.c +++ b/src/backend/executor/nodeIndexscan.c @@ -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 |