1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

setheapoverride() is history. Uses replaced with CommandCounterIncrement()

where necessary --- several of them didn't really need it, though.
tqual-checking macros simplified accordingly.
This commit is contained in:
Tom Lane
2000-01-17 23:57:48 +00:00
parent fb0627d972
commit 9e0b463473
13 changed files with 59 additions and 130 deletions

View File

@ -165,9 +165,7 @@ void CreateComments(Oid oid, char *comment) {
} else {
desctuple = heap_modifytuple(searchtuple, description, values,
nulls, replaces);
setheapoverride(true);
heap_update(description, &searchtuple->t_self, desctuple, NULL);
setheapoverride(false);
modified = TRUE;
}