diff options
author | Sneha Modi <sneha.modi@oracle.com> | 2011-11-10 12:04:23 +0530 |
---|---|---|
committer | Sneha Modi <sneha.modi@oracle.com> | 2011-11-10 12:04:23 +0530 |
commit | b61c2e0b764232374bc81eaa9179f3e32d262a5d (patch) | |
tree | b2dfe6dcd08481881d31a18b115a46f32f055a75 /mysql-test/t/query_cache.test | |
parent | 4c7ece260ed00e6290182865a0da800ac312936a (diff) | |
download | mariadb-git-b61c2e0b764232374bc81eaa9179f3e32d262a5d.tar.gz |
Bug#11754170:45729: TEST CASE FOR BUG#28211 IS DISABLED IN QUERY_CACHE.TEST
A patch for this bug has already been pushed. A minor change is made here.
The database to be used after re-enabling the disabled code is 'TEST'.
But instead, 'MYSQL' was being used.
This is the minor change that is being made here.
Diffstat (limited to 'mysql-test/t/query_cache.test')
-rw-r--r-- | mysql-test/t/query_cache.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/query_cache.test b/mysql-test/t/query_cache.test index caf57f343eb..49a8817fe6b 100644 --- a/mysql-test/t/query_cache.test +++ b/mysql-test/t/query_cache.test @@ -1224,7 +1224,7 @@ show status like 'Qcache_free_blocks'; create table t1(c1 int) engine=myisam; use db1; insert into t1(c1) values (1); - use mysql; + use test; select * from db1.t1; select c1+1 from db1.t1; select * from db3.t1; |