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:
@@ -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_
|
||||
|
||||
Reference in New Issue
Block a user