diff options
| author | Vadim B. Mikheev | 1998-11-27 19:52:36 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev | 1998-11-27 19:52:36 +0000 |
| commit | 6beba218d7f6f764e946751df6dc0d0180da05fa (patch) | |
| tree | 2801029d61d798d6150bb43a24561a4615aedb8b /src/backend/utils/time | |
| parent | 2435c7d501b0a3129f6fc597a9c85863541cd596 (diff) | |
New HeapTuple structure/interface.
Diffstat (limited to 'src/backend/utils/time')
| -rw-r--r-- | src/backend/utils/time/tqual.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/time/tqual.c b/src/backend/utils/time/tqual.c index dba296727da..c88646151a7 100644 --- a/src/backend/utils/time/tqual.c +++ b/src/backend/utils/time/tqual.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.19 1998/09/01 04:33:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.20 1998/11/27 19:52:36 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -75,7 +75,7 @@ setheapoverride(bool on) * Xmax is not committed))) that has not been committed */ bool -HeapTupleSatisfiesItself(HeapTuple tuple) +HeapTupleSatisfiesItself(HeapTupleHeader tuple) { if (!(tuple->t_infomask & HEAP_XMIN_COMMITTED)) @@ -171,7 +171,7 @@ HeapTupleSatisfiesItself(HeapTuple tuple) * that do catalog accesses. this is unfortunate, but not critical. */ bool -HeapTupleSatisfiesNow(HeapTuple tuple) +HeapTupleSatisfiesNow(HeapTupleHeader tuple) { if (AMI_OVERRIDE) return true; |
