aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2018-12-17 10:36:34 +0900
committerMichael Paquier <michael@paquier.xyz>2018-12-17 10:36:34 +0900
commit5812be7b63cfaf09d982a401ca8f72d150c0f721 (patch)
treeb964991b6d93976a7bcc1858a78378b1029d26c0 /src/backend
parent35efdd7fb81de8333949e7d7ea55908cc91ba897 (diff)
downloadpostgresql-5812be7b63cfaf09d982a401ca8f72d150c0f721.tar.gz
postgresql-5812be7b63cfaf09d982a401ca8f72d150c0f721.zip
Make constraint rename issue relcache invalidation on target relation
When a constraint gets renamed, it may have associated with it a target relation (for example domain constraints don't have one). Not invalidating the target relation cache when issuing the renaming can result in issues with subsequent commands that refer to the old constraint name using the relation cache, causing various failures. One pattern spotted was using CREATE TABLE LIKE after a constraint renaming. Reported-by: Stuart <sfbarbee@gmail.com> Author: Amit Langote Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/2047094.V130LYfLq4@station53.ousa.org
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/commands/tablecmds.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 515e1a7f3df..6ff3d46fb29 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -2486,8 +2486,15 @@ rename_constraint_internal(Oid myrelid,
ReleaseSysCache(tuple);
if (targetrelation)
+ {
relation_close(targetrelation, NoLock); /* close rel but keep lock */
+ /*
+ * Invalidate relcache so as others can see the new constraint name.
+ */
+ CacheInvalidateRelcache(targetrelation);
+ }
+
return address;
}