Skip to content
Snippets Groups Projects
Commit da003a5a authored by Alvaro Herrera's avatar Alvaro Herrera
Browse files

Make strings identical

parent 0b4660b5
No related branches found
No related tags found
No related merge requests found
......@@ -1902,7 +1902,7 @@ range_parse_flags(const char *flags_str)
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("invalid range bound flags"),
errhint("Valid values are '[]', '[)', '(]', and '()'.")));
errhint("Valid values are \"[]\", \"[)\", \"(]\", and \"()\".")));
}
switch (flags_str[1])
......@@ -1916,7 +1916,7 @@ range_parse_flags(const char *flags_str)
ereport(ERROR,
(errcode(ERRCODE_SYNTAX_ERROR),
errmsg("invalid range bound flags"),
errhint("Valid values are '[]', '[)', '(]', and '()'.")));
errhint("Valid values are \"[]\", \"[)\", \"(]\", and \"()\".")));
}
return flags;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment