Fix no number case in readIntText

This commit is contained in:
Кирилл Гарбар 2024-09-13 17:19:03 +03:00
parent 54f0a8c0e2
commit d05b06fda7

View File

@ -470,13 +470,15 @@ ReturnType readIntTextImpl(T & x, ReadBuffer & buf)
}
end:
if (has_sign && !has_number)
if (!has_number)
{
if constexpr (throw_exception)
if constexpr (!throw_exception)
return ReturnType(false);
if (has_sign)
throw Exception(ErrorCodes::CANNOT_PARSE_NUMBER,
"Cannot parse number with a sign character but without any numeric character");
else
return ReturnType(false);
throw Exception(ErrorCodes::CANNOT_PARSE_NUMBER,
"Cannot parse number without any numeric character");
}
x = res;
if constexpr (is_signed_v<T>)