mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
Merge bk-internal:/home/bk/mysql-5.0
into mysql.com:/home/mysqldev/tulin/mysql-5.0
This commit is contained in:
commit
c52f9d37d4
2 changed files with 19 additions and 1 deletions
|
@ -72,3 +72,11 @@ show status like "Qcache_hits";
|
|||
Variable_name Value
|
||||
Qcache_hits 0
|
||||
drop table t1, t2;
|
||||
set GLOBAL query_cache_size=0;
|
||||
set GLOBAL ndb_cache_check_time=0;
|
||||
reset query cache;
|
||||
flush status;
|
||||
set GLOBAL query_cache_size=0;
|
||||
set GLOBAL ndb_cache_check_time=0;
|
||||
reset query cache;
|
||||
flush status;
|
||||
|
|
|
@ -68,4 +68,14 @@ show status like "Qcache_hits";
|
|||
|
||||
drop table t1, t2;
|
||||
|
||||
|
||||
# Turn off and reset query cache on server1 and server2
|
||||
connection server1;
|
||||
set GLOBAL query_cache_size=0;
|
||||
set GLOBAL ndb_cache_check_time=0;
|
||||
reset query cache;
|
||||
flush status;
|
||||
connection server2;
|
||||
set GLOBAL query_cache_size=0;
|
||||
set GLOBAL ndb_cache_check_time=0;
|
||||
reset query cache;
|
||||
flush status;
|
||||
|
|
Loading…
Add table
Reference in a new issue