mirror of
https://github.com/postgres/postgres.git
synced 2026-04-29 02:00:35 -04:00
Make strings identical
This commit is contained in:
parent
0b4660b539
commit
da003a5ab1
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue