diff options
Diffstat (limited to 'src/backend/optimizer/path/indxpath.c')
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 1527ca4fac2..2fc43e0fdab 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.11 1997/09/08 21:44:55 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.12 1997/11/20 23:21:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -998,7 +998,7 @@ clause_pred_clause_test(Expr *predicate, Node *clause) * will be used to find the associated strategy numbers for the test. * --Nels, Jan '93 */ - scan = heap_beginscan(relation, false, NowTimeQual, 2, entry); + scan = heap_beginscan(relation, false, false, 2, entry); tuple = heap_getnext(scan, false, (Buffer *) NULL); if (!HeapTupleIsValid(tuple)) { @@ -1029,7 +1029,7 @@ clause_pred_clause_test(Expr *predicate, Node *clause) ObjectIdEqualRegProcedure, ObjectIdGetDatum(clause_op)); - scan = heap_beginscan(relation, false, NowTimeQual, 3, entry); + scan = heap_beginscan(relation, false, false, 3, entry); tuple = heap_getnext(scan, false, (Buffer *) NULL); if (!HeapTupleIsValid(tuple)) { @@ -1061,7 +1061,7 @@ clause_pred_clause_test(Expr *predicate, Node *clause) Integer16EqualRegProcedure, Int16GetDatum(test_strategy)); - scan = heap_beginscan(relation, false, NowTimeQual, 3, entry); + scan = heap_beginscan(relation, false, false, 3, entry); tuple = heap_getnext(scan, false, (Buffer *) NULL); if (!HeapTupleIsValid(tuple)) { |