diff options
author | jimw@mysql.com <> | 2005-07-29 09:25:11 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-07-29 09:25:11 -0700 |
commit | 4bef050cd46aef43148ee54cf23d6589a5f589b8 (patch) | |
tree | dd2fce300eb958ff625502bcc4544a2474f6dcf9 /mysql-test/t/variables.test | |
parent | ceb75aed656fb84394811b07bbd68c74d62e9770 (diff) | |
parent | 90924fcb6ae5010b09365abb2e34ee1ac05dcfc2 (diff) | |
download | mariadb-git-4bef050cd46aef43148ee54cf23d6589a5f589b8.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-5.0-10351
into mysql.com:/home/jimw/my/mysql-5.0-clean
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 1dae1812347..d6dd6017a16 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -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; |