Current Path : /home/usr.opt/mysql57/mysql-test/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : /home/usr.opt/mysql57/mysql-test/r/lowercase_table_qcache.result |
set GLOBAL query_cache_size=1355776; Warnings: Warning 1287 '@@query_cache_size' is deprecated and will be removed in a future release. drop database if exists MySQLtesT; create database MySQLtesT; create table MySQLtesT.t1 (a int); select * from MySQLtesT.t1; a show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 1 drop database mysqltest; show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 0 use MySQL; select * from db; show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 0 use test; select * from MySQL.db; show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 0 set GLOBAL query_cache_size=DEFAULT; Warnings: Warning 1287 '@@query_cache_size' is deprecated and will be removed in a future release.