2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-15 13:12:21 +00:00

Fixed overflow bug in text deserialization tests in win32

This commit is contained in:
ruben
2020-05-19 09:52:40 +01:00
parent eaf9801e2f
commit 129ce6b7ac

View File

@@ -143,7 +143,7 @@ INSTANTIATE_TEST_SUITE_P(MEDIUMINT, DeserializeTextValueTest, ValuesIn(
INSTANTIATE_TEST_SUITE_P(INT, DeserializeTextValueTest, ValuesIn(
make_int_cases(
"2147483647", 2147483647,
"-2147483648", -2147483648,
"-2147483648", -2147483647 - 1, // minus is not part of literal, avoids warning
"4294967295", 4294967295,
"0000067295", 67295,
protocol_field_type::long_