mirror of
https://github.com/postgres/postgres.git
synced 2025-06-17 17:02:08 +03:00
Fix some errhint and errdetail strings missing a period
As per the error message style guide of the documentation, those should be full sentences. Author: Daniel Gustafsson Reviewed-by: Michael Paquier, Álvaro Herrera Discussion: https://1E8D49B4-16BC-4420-B4ED-58501D9E076B@yesql.se
This commit is contained in:
@ -11382,7 +11382,7 @@ ATExecAddInherit(Relation child_rel, RangeVar *parent, LOCKMODE lockmode)
|
||||
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
||||
errmsg("trigger \"%s\" prevents table \"%s\" from becoming an inheritance child",
|
||||
trigger_name, RelationGetRelationName(child_rel)),
|
||||
errdetail("ROW triggers with transition tables are not supported in inheritance hierarchies")));
|
||||
errdetail("ROW triggers with transition tables are not supported in inheritance hierarchies.")));
|
||||
|
||||
/* OK to create inheritance */
|
||||
CreateInheritance(child_rel, parent_rel);
|
||||
|
Reference in New Issue
Block a user