diff options
Diffstat (limited to 'src/backend/executor/execAmi.c')
-rw-r--r-- | src/backend/executor/execAmi.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/backend/executor/execAmi.c b/src/backend/executor/execAmi.c index ad659f5995e..bffb0f26eb4 100644 --- a/src/backend/executor/execAmi.c +++ b/src/backend/executor/execAmi.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.8 1997/09/08 21:42:52 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.9 1997/11/20 23:21:22 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -45,7 +45,7 @@ static Pointer ExecBeginScan(Relation relation, int nkeys, ScanKey skeys, - bool isindex, ScanDirection dir, TimeQual time_range); + bool isindex, ScanDirection dir); static Relation ExecOpenR(Oid relationOid, bool isindex); /* ---------------------------------------------------------------- @@ -70,7 +70,6 @@ ExecOpenScanR(Oid relOid, ScanKey skeys, bool isindex, ScanDirection dir, - TimeQual timeRange, Relation *returnRelation, /* return */ Pointer *returnScanDesc) /* return */ { @@ -89,8 +88,7 @@ ExecOpenScanR(Oid relOid, nkeys, skeys, isindex, - dir, - timeRange); + dir); if (returnRelation != NULL) *returnRelation = relation; @@ -146,8 +144,7 @@ ExecBeginScan(Relation relation, int nkeys, ScanKey skeys, bool isindex, - ScanDirection dir, - TimeQual time_range) + ScanDirection dir) { Pointer scanDesc; @@ -172,7 +169,7 @@ ExecBeginScan(Relation relation, { scanDesc = (Pointer) heap_beginscan(relation, ScanDirectionIsBackward(dir), - time_range, + false, nkeys, skeys); } |