diff options
author | jimw@mysql.com <> | 2005-07-22 16:18:34 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-07-22 16:18:34 -0700 |
commit | 72a6c71d08bb18a540a3c463a98bfefc44bb8658 (patch) | |
tree | 2c85c101a029d878e55c1520a01261212d52ef9f /mysql-test/t/variables.test | |
parent | d6d1a9aae20aed0bdbd3061c3aa5c95c9b962cac (diff) | |
download | mariadb-git-72a6c71d08bb18a540a3c463a98bfefc44bb8658.tar.gz |
Fix value returned from SELECT of unsigned long system
variables. (Bug #10351)
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index c3ffdc79c16..e6efb86e325 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -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; |