From e9e1ff226f285bc7b488e670be4b8220cdba4a53 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 20 Nov 1997 23:24:03 +0000 Subject: Remove all time travel stuff. Small parser cleanup. --- src/backend/optimizer/path/indxpath.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/backend/optimizer/path/indxpath.c') diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 1527ca4fac..2fc43e0fda 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)) { -- cgit v1.2.1