1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-23 08:45:18 +03:00
Files
mariadb/mysql-test/main/check_view_protocol.result
Lena Startseva 6c3f1f661c MDEV-27691: make working view-protocol
Added ability to disable/enable (--disable_view_protocol/--enable_view_protocol) view-protocol in tests.
When the  option "--disable_view_protocol" is used  util connections are closed.
Added new test for checking view-protocol
2022-02-16 13:06:23 +07:00

20 lines
339 B
Plaintext

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;