1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +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:
Michael Paquier
2018-12-07 07:47:42 +09:00
parent d2b0b60e71
commit 730422afcd
9 changed files with 23 additions and 23 deletions

View File

@ -294,7 +294,7 @@ btree_index_checkable(Relation rel)
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
errmsg("cannot check index \"%s\"",
RelationGetRelationName(rel)),
errdetail("Index is not valid")));
errdetail("Index is not valid.")));
}
/*