Skip to content

Commit 0d3b69a

Browse files
committed
s/table_close/heap_close/ in v11.
Back-patching thinko in 306c318. Per buildfarm.
1 parent 306c318 commit 0d3b69a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/catalog/heap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ SetAttrMissing(Oid relid, char *attname, char *value)
20682068
/* Don't do anything unless it's a plain table */
20692069
if (tablerel->rd_rel->relkind != RELKIND_RELATION)
20702070
{
2071-
table_close(tablerel, AccessExclusiveLock);
2071+
heap_close(tablerel, AccessExclusiveLock);
20722072
return;
20732073
}
20742074

0 commit comments

Comments
 (0)