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

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
parent d6d1a9aae2
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;