diff options
author | Michael Widenius <monty@askmonty.org> | 2013-06-11 13:49:43 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2013-06-11 13:49:43 +0300 |
commit | 894cfcf78034486108c4780fb78e52114b770f8e (patch) | |
tree | 434bf4e9e710d29774eeb8e005975bfda026f206 /mysql-test/t/variables.test | |
parent | d0ce9cb83205e87127ca67522d1dac90d98f323e (diff) | |
download | mariadb-git-894cfcf78034486108c4780fb78e52114b770f8e.tar.gz |
Fixed tests that failed on 32 bit because of my earlier fixes of 32 bit limits.
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 6c4599740e7..b1288b6e24d 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -1228,7 +1228,10 @@ DROP TABLE t1; SET @old_max_binlog_cache_size = @@GLOBAL.max_binlog_cache_size; --echo # Set the max_binlog_cache_size to size more than 4GB. +--disable_warnings SET GLOBAL max_binlog_cache_size = 5 * 1024 * 1024 * 1024; +--enable_warnings +--replace_result 5368709120 max_size 4294963200 max_size SELECT @@GLOBAL.max_binlog_cache_size; SET GLOBAL max_binlog_cache_size = @old_max_binlog_cache_size; |