Fix value returned from SELECT of unsigned long system

variables. (Bug #10351)
This commit is contained in:
jimw@mysql.com 2005-07-22 16:18:34 -07:00
commit 72a6c71d08
5 changed files with 26 additions and 3 deletions

View file

@ -406,3 +406,13 @@ drop table t1;
set @@warning_count=1;
--error 1238
set @@global.error_count=1;
#
# Bug #10351: Setting max_heap_table_size to 4G fails
#
set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size;
set global max_heap_table_size= 4294967296;
select @@max_heap_table_size;
set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size;