diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-20 23:24:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-20 23:24:03 +0000 |
commit | e9e1ff226f285bc7b488e670be4b8220cdba4a53 (patch) | |
tree | 7dd89bef1e88e75736c97578e6ebc0f081e71622 /src/backend/optimizer/path/indxpath.c | |
parent | e075271c178720199fe95ba6f3482bcb5ce12df7 (diff) |
Remove all time travel stuff. Small parser cleanup.
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)) { |