diff options
| author | Neil Conway | 2005-03-20 23:40:34 +0000 |
|---|---|---|
| committer | Neil Conway | 2005-03-20 23:40:34 +0000 |
| commit | fe7015f5e821d70428995f04726215fc79294f10 (patch) | |
| tree | 380d001fd45874f03058f49004f27cd1468c6913 /src/backend/utils/time | |
| parent | 9e0dd8459658c93ffb6f6bad9bbdd7122e551d51 (diff) | |
Change the return value of HeapTupleSatisfiesUpdate() to be an enum,
rather than an integer, and fix the associated fallout. From Alvaro
Herrera.
Diffstat (limited to 'src/backend/utils/time')
| -rw-r--r-- | src/backend/utils/time/tqual.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/time/tqual.c b/src/backend/utils/time/tqual.c index 124ac1cbec0..43909008863 100644 --- a/src/backend/utils/time/tqual.c +++ b/src/backend/utils/time/tqual.c @@ -16,7 +16,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.85 2005/02/20 15:01:42 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/time/tqual.c,v 1.86 2005/03/20 23:40:27 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -455,7 +455,7 @@ HeapTupleSatisfiesToast(HeapTupleHeader tuple, Buffer buffer) * tuples of my own xact are tested against the passed CommandId not * CurrentCommandId. */ -int +HTSU_Result HeapTupleSatisfiesUpdate(HeapTupleHeader tuple, CommandId curcid, Buffer buffer) { |
