diff options
author | unknown <bell@book.sanja.is.com.ua> | 2005-05-18 16:41:32 +0300 |
---|---|---|
committer | unknown <bell@book.sanja.is.com.ua> | 2005-05-18 16:41:32 +0300 |
commit | 8c4e286064d04e06bc6e1efa87dcb2e04fb09e25 (patch) | |
tree | 7f2e4357dae464a05e74b729bfb1eccbbaeed6dc /mysql-test/t/grant_cache.test | |
parent | 159aac80154f42464901f6ac3a9b1f692fd881ab (diff) | |
download | mariadb-git-8c4e286064d04e06bc6e1efa87dcb2e04fb09e25.tar.gz |
reduced 1 server reloding during test
BitKeeper/deleted/.del-grant_cache-master.opt~1b04b4b1116a7a2:
Delete: mysql-test/t/grant_cache-master.opt
mysql-test/r/grant_cache.result:
query cache management moved inside test
mysql-test/t/grant_cache.test:
query cache management moved inside test to privent server reloading during test
Diffstat (limited to 'mysql-test/t/grant_cache.test')
-rw-r--r-- | mysql-test/t/grant_cache.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/grant_cache.test b/mysql-test/t/grant_cache.test index 7d6f7262f0a..0fb0b3c2fc0 100644 --- a/mysql-test/t/grant_cache.test +++ b/mysql-test/t/grant_cache.test @@ -10,6 +10,8 @@ drop table if exists test.t1,mysqltest.t1,mysqltest.t2; drop database if exists mysqltest; --enable_warnings +set GLOBAL query_cache_size=1355776; + reset query cache; flush status; connect (root,localhost,root,,test,$MASTER_MYPORT,master.sock); @@ -145,3 +147,5 @@ delete from mysql.columns_priv where user in ("mysqltest_1","mysqltest_2","mysql flush privileges; drop table test.t1,mysqltest.t1,mysqltest.t2; drop database mysqltest; + +set GLOBAL query_cache_size=default; |