diff options
author | unknown <sanja@montyprogram.com> | 2012-04-19 17:00:13 +0300 |
---|---|---|
committer | unknown <sanja@montyprogram.com> | 2012-04-19 17:00:13 +0300 |
commit | 4cae07968c3d112adc1d7c16b6baf923d9a039a5 (patch) | |
tree | 776f8505ac93a31206e1937a079dc5d7ecdde6d3 /mysql-test/r/query_cache.result | |
parent | d16ea779f814ec10a2cd2cc44a6cacca3bd45705 (diff) | |
download | mariadb-git-4cae07968c3d112adc1d7c16b6baf923d9a039a5.tar.gz |
Dependency of tests from ulong size removed.
Diffstat (limited to 'mysql-test/r/query_cache.result')
-rw-r--r-- | mysql-test/r/query_cache.result | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/query_cache.result b/mysql-test/r/query_cache.result index d9cb2d99020..2dd89d0e4bb 100644 --- a/mysql-test/r/query_cache.result +++ b/mysql-test/r/query_cache.result @@ -442,9 +442,11 @@ show global variables like "query_cache_min_res_unit"; Variable_name Value query_cache_min_res_unit 4096 set GLOBAL query_cache_min_res_unit=1001; +Warnings: +Warning 1292 Truncated incorrect query_cache_min_res_unit value: '1001' show global variables like "query_cache_min_res_unit"; Variable_name Value -query_cache_min_res_unit 1008 +query_cache_min_res_unit 1000 create table t1 (a int not null); insert into t1 values (1),(2),(3); create table t2 (a int not null); |