Commit 4a0c1c7a authored by Patrick Crews's avatar Patrick Crews

merge

parents b69c44a9 eb330039
...@@ -647,12 +647,14 @@ set @@global.error_count=1; ...@@ -647,12 +647,14 @@ set @@global.error_count=1;
# Bug #10351: Setting ulong variable to > MAX_ULONG fails on 32-bit platform # Bug #10351: Setting ulong variable to > MAX_ULONG fails on 32-bit platform
# #
--disable_warnings
set @@max_heap_table_size= 4294967296; set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0; select @@max_heap_table_size > 0;
set global max_heap_table_size= 4294967296; set global max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0; select @@max_heap_table_size > 0;
set @@max_heap_table_size= 4294967296; set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0; select @@max_heap_table_size > 0;
--enable_warnings
# #
# Bug #11775 Variable character_set_system does not exist (sometimes) # Bug #11775 Variable character_set_system does not exist (sometimes)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment