mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.2 into 10.3
This commit is contained in:
9
mysql-test/suite/rpl/r/rpl_15867.result
Normal file
9
mysql-test/suite/rpl/r/rpl_15867.result
Normal file
@@ -0,0 +1,9 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
CREATE TEMPORARY TABLE t (i INT);
|
||||
CREATE TABLE t AS SELECT * FROM t;
|
||||
connection slave;
|
||||
connection master;
|
||||
DROP TEMPORARY TABLE t;
|
||||
DROP TABLE t;
|
||||
include/rpl_end.inc
|
11
mysql-test/suite/rpl/t/rpl_15867.test
Normal file
11
mysql-test/suite/rpl/t/rpl_15867.test
Normal file
@@ -0,0 +1,11 @@
|
||||
--source include/master-slave.inc
|
||||
CREATE TEMPORARY TABLE t (i INT);
|
||||
CREATE TABLE t AS SELECT * FROM t;
|
||||
|
||||
--sync_slave_with_master
|
||||
|
||||
# Cleanup
|
||||
--connection master
|
||||
DROP TEMPORARY TABLE t;
|
||||
DROP TABLE t;
|
||||
--source include/rpl_end.inc
|
Reference in New Issue
Block a user