Skip to content

Commit 700743a

Browse files
author
Alexander Korotkov
committed
Fix error message for int64 GUCs.
1 parent 5b5c4d8 commit 700743a

File tree

1 file changed

+1
-1
lines changed
  • src/backend/utils/misc

1 file changed

+1
-1
lines changed

src/backend/utils/misc/guc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5719,7 +5719,7 @@ parse_int64(const char *value, int64 *result, int flags, const char **hintmsg)
57195719
if (errno == ERANGE)
57205720
{
57215721
if (hintmsg)
5722-
*hintmsg = gettext_noop("Value exceeds integer range.");
5722+
*hintmsg = gettext_noop("Value exceeds integer64 range.");
57235723
return false;
57245724
}
57255725

0 commit comments

Comments
 (0)