projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
306c318
)
s/table_close/heap_close/ in v11.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 18 Jun 2021 15:45:45 +0000
(11:45 -0400)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 18 Jun 2021 15:45:45 +0000
(11:45 -0400)
Back-patching thinko in
306c31804
. Per buildfarm.
src/backend/catalog/heap.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/catalog/heap.c
b/src/backend/catalog/heap.c
index e32df1616a0482dc120ed87d563e06c11a52978b..6a5a08199297bcde3842b76d2e970899708d4461 100644
(file)
--- a/
src/backend/catalog/heap.c
+++ b/
src/backend/catalog/heap.c
@@
-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;
}