mariadb/mysql-test/suite/rpl/r/rpl_row_001.result
Sergei Golubchik 4abb8216a0 MDEV-17658 change the structure of mysql.user table
Implement User_table_json.
Fix scripts to use mysql.global_priv.
Fix tests.
2018-12-12 00:31:44 +01:00

32 lines
531 B
Text

include/master-slave.inc
[connection master]
CREATE TABLE t1 (n INT);
connection slave;
connection master;
RESET MASTER;
connection slave;
STOP SLAVE;
RESET SLAVE;
connection master;
SELECT COUNT(*) FROM t1;
COUNT(*)
5000
connection slave;
LOCK TABLES t1 READ;
START SLAVE;
UNLOCK TABLES;
SELECT COUNT(*) FROM t1;
COUNT(*)
5000
connection master;
DROP TABLE t1;
CREATE TABLE t1 (n INT);
INSERT INTO t1 VALUES(3456);
connection slave;
SELECT n FROM t1;
n
3456
connection master;
DROP TABLE t1;
connection slave;
include/rpl_end.inc