mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.5 into 10.6
This commit is contained in:
29
mysql-test/suite/rpl/r/rpl_query_cache.result
Normal file
29
mysql-test/suite/rpl/r/rpl_query_cache.result
Normal file
@@ -0,0 +1,29 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
connection slave;
|
||||
SET @qtype= @@global.query_cache_type;
|
||||
SET GLOBAL query_cache_type= ON;
|
||||
SET query_cache_type= ON;
|
||||
connection master;
|
||||
create table t1 (i int) engine=innodb;
|
||||
insert into t1 set i=1;
|
||||
connection slave;
|
||||
select * from t1;
|
||||
i
|
||||
1
|
||||
connection master;
|
||||
insert into t1 set i=2;
|
||||
connection slave;
|
||||
select * from t1;
|
||||
i
|
||||
1
|
||||
2
|
||||
select sql_no_cache * from t1;
|
||||
i
|
||||
1
|
||||
2
|
||||
connection master;
|
||||
DROP TABLE t1;
|
||||
connection slave;
|
||||
SET GLOBAL query_cache_type= @qtype;
|
||||
include/rpl_end.inc
|
27
mysql-test/suite/rpl/t/rpl_query_cache.test
Normal file
27
mysql-test/suite/rpl/t/rpl_query_cache.test
Normal file
@@ -0,0 +1,27 @@
|
||||
-- source include/have_binlog_format_row.inc
|
||||
-- source include/have_innodb.inc
|
||||
-- source include/master-slave.inc
|
||||
|
||||
--connection slave
|
||||
SET @qtype= @@global.query_cache_type;
|
||||
SET GLOBAL query_cache_type= ON;
|
||||
SET query_cache_type= ON;
|
||||
|
||||
--connection master
|
||||
create table t1 (i int) engine=innodb;
|
||||
insert into t1 set i=1;
|
||||
|
||||
--sync_slave_with_master
|
||||
select * from t1;
|
||||
--connection master
|
||||
insert into t1 set i=2;
|
||||
|
||||
--sync_slave_with_master
|
||||
select * from t1;
|
||||
select sql_no_cache * from t1;
|
||||
|
||||
--connection master
|
||||
DROP TABLE t1;
|
||||
--sync_slave_with_master
|
||||
SET GLOBAL query_cache_type= @qtype;
|
||||
--source include/rpl_end.inc
|
Reference in New Issue
Block a user