diff options
author | Neil Conway <neilc@samurai.com> | 2005-03-20 23:40:34 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-03-20 23:40:34 +0000 |
commit | fe7015f5e821d70428995f04726215fc79294f10 (patch) | |
tree | 380d001fd45874f03058f49004f27cd1468c6913 /src/backend/commands/async.c | |
parent | 9e0dd8459658c93ffb6f6bad9bbdd7122e551d51 (diff) | |
download | postgresql-fe7015f5e821d70428995f04726215fc79294f10.tar.gz postgresql-fe7015f5e821d70428995f04726215fc79294f10.zip |
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/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 06f453df6df..11ad8c69bce 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.119 2005/01/27 23:23:54 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.120 2005/03/20 23:40:24 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -521,7 +521,7 @@ AtCommit_Notify(void) else if (listener->notification == 0) { ItemPointerData ctid; - int result; + HTSU_Result result; rTuple = heap_modifytuple(lTuple, tdesc, value, nulls, repl); |