1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug#40657: assertion with out of range variables and traditional sql_mode

test-fixes for 32-bit
This commit is contained in:
Tatiana A. Nurnberg
2009-03-09 15:26:53 +01:00
parent 6d5ccfa1f2
commit dec80f3ee5

View File

@ -647,12 +647,14 @@ set @@global.error_count=1;
# Bug #10351: Setting ulong variable to > MAX_ULONG fails on 32-bit platform
#
--disable_warnings
set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0;
set global max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0;
set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0;
--enable_warnings
#
# Bug #11775 Variable character_set_system does not exist (sometimes)