summaryrefslogtreecommitdiff
path: root/mysql-test/suite/plugins/r/qc_info_priv.result
blob: c723eca1ec0fc054baa46f40b758b5b90e33d21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
set global query_cache_size=1355776;
create table t1 (a int not null);
insert into t1 values (1),(2),(3);
select * from t1;
a
1
2
3
select statement_schema, statement_text, result_blocks_count, result_blocks_size from information_schema.query_cache_info;
statement_schema	statement_text	result_blocks_count	result_blocks_size
test	select * from t1	1	512
create user mysqltest;
select a from t1;
a
1
2
3
select count(*) from information_schema.query_cache_info;
count(*)
0
drop user mysqltest;
drop table t1;
set global query_cache_size= default;