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/include/utils/tqual.h | |
parent | e075271c178720199fe95ba6f3482bcb5ce12df7 (diff) | |
download | postgresql-e9e1ff226f285bc7b488e670be4b8220cdba4a53.tar.gz postgresql-e9e1ff226f285bc7b488e670be4b8220cdba4a53.zip |
Remove all time travel stuff. Small parser cleanup.
Diffstat (limited to 'src/include/utils/tqual.h')
-rw-r--r-- | src/include/utils/tqual.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h index e07750bd3d6..6ee27af2c27 100644 --- a/src/include/utils/tqual.h +++ b/src/include/utils/tqual.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tqual.h,v 1.10 1997/11/02 15:27:14 vadim Exp $ + * $Id: tqual.h,v 1.11 1997/11/20 23:24:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,18 +15,12 @@ #include <access/htup.h> -typedef Pointer TimeQual; - -/* Tuples valid as of StartTransactionCommand */ -#define NowTimeQual ((TimeQual) NULL) - /* As above, plus updates in this command */ -extern TimeQual SelfTimeQual; extern void setheapoverride(bool on); extern bool heapisoverride(void); -extern bool HeapTupleSatisfiesTimeQual(HeapTuple tuple, TimeQual qual); +extern bool HeapTupleSatisfiesVisibility(HeapTuple tuple, bool seeself); #endif /* TQUAL_H */ |