summaryrefslogtreecommitdiff
path: root/mysql-test/main/check_view_protocol.result
blob: 697bc759498a239f0e3709e2bf8aae2d35f7fa88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
flush status;
create table t1 (a int);
insert into t1 (a) values (1);
create table t2 (b int);
insert into t2 (b) values (2);
select * from t1;
a
1
show status like 'Opened_views';
Variable_name	Value
Opened_views	1
flush status;
select * from t2;
b
2
show status like 'Opened_views';
Variable_name	Value
Opened_views	0
drop table t1, t2;