diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-12-07 07:47:42 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-12-07 07:47:42 +0900 |
commit | 730422afcdb6784bbe20efc65de72156d470b0c4 (patch) | |
tree | 9fa0f02477ffd0f716ccdf859d9776078d3b9c28 /src/backend/commands/tablecmds.c | |
parent | d2b0b60e71931997455afd5da72ca29148f1ca51 (diff) | |
download | postgresql-730422afcdb6784bbe20efc65de72156d470b0c4.tar.gz postgresql-730422afcdb6784bbe20efc65de72156d470b0c4.zip |
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
Diffstat (limited to 'src/backend/commands/tablecmds.c')
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 843ed48aa76..8e854279d2a 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -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); |