mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge mysql.com:/home/jimw/my/mysql-5.0-10351
into mysql.com:/home/jimw/my/mysql-5.0-clean
This commit is contained in:
@ -410,11 +410,9 @@ set @@warning_count=1;
|
||||
set @@global.error_count=1;
|
||||
|
||||
#
|
||||
# Bug #10351: Setting max_heap_table_size to 4G fails
|
||||
# Bug #10351: Setting ulong variable to > MAX_ULONG fails on 32-bit platform
|
||||
#
|
||||
set @@max_heap_table_size= 4294967296;
|
||||
select @@max_heap_table_size;
|
||||
select @@max_heap_table_size > 0;
|
||||
set global max_heap_table_size= 4294967296;
|
||||
select @@max_heap_table_size;
|
||||
set @@max_heap_table_size= 4294967296;
|
||||
select @@max_heap_table_size;
|
||||
select @@global.max_heap_table_size > 0;
|
||||
|
Reference in New Issue
Block a user