diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-11-04 19:15:00 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-11-04 19:15:00 +0900 |
commit | 8c7146790811ac4eee23fab2226db14b636e1ac5 (patch) | |
tree | c59bd0b5a11a7f92fb42d29ba708b0e244f06a8c /src/backend/commands/trigger.c | |
parent | 3e77b2eb3466aff9fe19e209ebc0d899ea869494 (diff) | |
download | postgresql-8c7146790811ac4eee23fab2226db14b636e1ac5.tar.gz postgresql-8c7146790811ac4eee23fab2226db14b636e1ac5.zip |
Correct error message for row-level triggers with transition tables on partitioned tables.
"Triggers on partitioned tables cannot have transition tables." is
incorrect as we allow statement-level triggers on partitioned tables to
have transition tables.
This has been wrong since commit 86f575948; back-patch to v11 where that
commit came in.
Reviewed by Tom Lane.
Discussion: https://postgr.es/m/CAPmGK17gk4vXLzz2iG%2BG4LWRWCoVyam70nZ3OuGm1hMJwDrhcg%40mail.gmail.com
Diffstat (limited to 'src/backend/commands/trigger.c')
-rw-r--r-- | src/backend/commands/trigger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c index 182e6161e0c..e64145e710c 100644 --- a/src/backend/commands/trigger.c +++ b/src/backend/commands/trigger.c @@ -264,7 +264,7 @@ CreateTriggerFiringOn(CreateTrigStmt *stmt, const char *queryString, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), errmsg("\"%s\" is a partitioned table", RelationGetRelationName(rel)), - errdetail("Triggers on partitioned tables cannot have transition tables."))); + errdetail("ROW triggers with transition tables are not supported on partitioned tables."))); } } else if (rel->rd_rel->relkind == RELKIND_VIEW) |