mirror of
https://github.com/postgres/postgres.git
synced 2026-03-16 23:52:13 -04:00
s/table_close/heap_close/ in v11.
Back-patching thinko in 306c31804. Per buildfarm.
This commit is contained in:
parent
306c318043
commit
0d3b69ae00
1 changed files with 1 additions and 1 deletions
|
|
@ -2068,7 +2068,7 @@ SetAttrMissing(Oid relid, char *attname, char *value)
|
|||
/* Don't do anything unless it's a plain table */
|
||||
if (tablerel->rd_rel->relkind != RELKIND_RELATION)
|
||||
{
|
||||
table_close(tablerel, AccessExclusiveLock);
|
||||
heap_close(tablerel, AccessExclusiveLock);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue