summaryrefslogtreecommitdiff
path: root/mysql-test/t/variables.test
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-07-29 09:25:11 -0700
committerjimw@mysql.com <>2005-07-29 09:25:11 -0700
commit4bef050cd46aef43148ee54cf23d6589a5f589b8 (patch)
treedd2fce300eb958ff625502bcc4544a2474f6dcf9 /mysql-test/t/variables.test
parentceb75aed656fb84394811b07bbd68c74d62e9770 (diff)
parent90924fcb6ae5010b09365abb2e34ee1ac05dcfc2 (diff)
downloadmariadb-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.test8
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;