diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-24 00:44:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-24 00:44:37 +0000 |
commit | bb10bf319eb301cdb5d11a5fb1709348754ac6b3 (patch) | |
tree | 830a88642fbc598f9901d8464a582ef0f9335e20 /src/backend/commands/async.c | |
parent | 6f9ff92cc0ff6a07d2fe38abe044286ee98d44a0 (diff) | |
download | postgresql-bb10bf319eb301cdb5d11a5fb1709348754ac6b3.tar.gz postgresql-bb10bf319eb301cdb5d11a5fb1709348754ac6b3.zip |
Rename heap_replace to heap_update.
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 cc1b9517b60..2267a2415e7 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.55 1999/11/22 17:55:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.56 1999/11/24 00:44:29 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -509,7 +509,7 @@ AtCommit_Notify() { rTuple = heap_modifytuple(lTuple, lRel, value, nulls, repl); - heap_replace(lRel, &lTuple->t_self, rTuple, NULL); + heap_update(lRel, &lTuple->t_self, rTuple, NULL); if (RelationGetForm(lRel)->relhasindex) { Relation idescs[Num_pg_listener_indices]; @@ -775,7 +775,7 @@ ProcessIncomingNotify(void) NotifyMyFrontEnd(relname, sourcePID); /* Rewrite the tuple with 0 in notification column */ rTuple = heap_modifytuple(lTuple, lRel, value, nulls, repl); - heap_replace(lRel, &lTuple->t_self, rTuple, NULL); + heap_update(lRel, &lTuple->t_self, rTuple, NULL); if (RelationGetForm(lRel)->relhasindex) { Relation idescs[Num_pg_listener_indices]; |