|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $PostgreSQL: pgsql/src/backend/executor/nodeTidscan.c,v 1.41 2004/12/31 21:59:45 pgsql Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/executor/nodeTidscan.c,v 1.42 2005/09/22 15:09:51 tgl Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
@@ -375,7 +375,6 @@ ExecInitTidScan(TidScan *node, EState *estate)
|
375 | 375 | Oidrelid;
|
376 | 376 | Oidreloid;
|
377 | 377 | RelationcurrentRelation;
|
378 |
| -Bitmapset*execParam=NULL; |
379 | 378 |
|
380 | 379 | /*
|
381 | 380 | * create state structure
|
@@ -445,12 +444,6 @@ ExecInitTidScan(TidScan *node, EState *estate)
|
445 | 444 | */
|
446 | 445 | ExecAssignScanType(&tidstate->ss,RelationGetDescr(currentRelation), false);
|
447 | 446 |
|
448 |
| -/* |
449 |
| - * if there are some PARAM_EXEC in skankeys then force tid rescan on |
450 |
| - * first scan. |
451 |
| - */ |
452 |
| -tidstate->ss.ps.chgParam=execParam; |
453 |
| - |
454 | 447 | /*
|
455 | 448 | * Initialize result tuple type and projection info.
|
456 | 449 | */
|
|