diff options
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index e93d9b71163..06f453df6df 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.118 2004/12/31 21:59:41 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/commands/async.c,v 1.119 2005/01/27 23:23:54 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -523,7 +523,7 @@ AtCommit_Notify(void) ItemPointerData ctid; int result; - rTuple = heap_modifytuple(lTuple, lRel, + rTuple = heap_modifytuple(lTuple, tdesc, value, nulls, repl); /* @@ -942,7 +942,7 @@ ProcessIncomingNotify(void) * tried to UNLISTEN us, so there can be no uncommitted * changes. */ - rTuple = heap_modifytuple(lTuple, lRel, value, nulls, repl); + rTuple = heap_modifytuple(lTuple, tdesc, value, nulls, repl); simple_heap_update(lRel, &lTuple->t_self, rTuple); #ifdef NOT_USED /* currently there are no indexes */ |