Remove some dead code.
authorTom Lane
Thu, 22 Sep 2005 15:09:51 +0000 (15:09 +0000)
committerTom Lane
Thu, 22 Sep 2005 15:09:51 +0000 (15:09 +0000)
src/backend/executor/nodeTidscan.c

index a1eb4351dbb4933d742edea3f14e0d8a87c92e72..4cc1e4df148b776623a4f3c494be188a52617e78 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/executor/nodeTidscan.c,v 1.41 2004/12/31 21:59:45 pgsql Exp $
+ *   $PostgreSQL: pgsql/src/backend/executor/nodeTidscan.c,v 1.42 2005/09/22 15:09:51 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -375,7 +375,6 @@ ExecInitTidScan(TidScan *node, EState *estate)
    Oid         relid;
    Oid         reloid;
    Relation    currentRelation;
-   Bitmapset  *execParam = NULL;
 
    /*
     * create state structure
@@ -445,12 +444,6 @@ ExecInitTidScan(TidScan *node, EState *estate)
     */
    ExecAssignScanType(&tidstate->ss, RelationGetDescr(currentRelation), false);
 
-   /*
-    * if there are some PARAM_EXEC in skankeys then force tid rescan on
-    * first scan.
-    */
-   tidstate->ss.ps.chgParam = execParam;
-
    /*
     * Initialize result tuple type and projection info.
     */