mirror of
https://github.com/MariaDB/server.git
synced 2026-05-08 16:14:30 +02:00
Added the PBXT test suite
This commit is contained in:
parent
e1e48d82d4
commit
5f513d0941
349 changed files with 105807 additions and 104 deletions
24
mysql-test/suite/pbxt/r/lowercase_table_qcache.result
Normal file
24
mysql-test/suite/pbxt/r/lowercase_table_qcache.result
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
set GLOBAL query_cache_size=1355776;
|
||||
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=0;
|
||||
Loading…
Add table
Add a link
Reference in a new issue