mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
7aace5d5da
Task: ===== Update tests to reflect MDEV-20122, deprecation of master_use_gtid=current_pos. Change Master (CM) statements were either removed or modified with current_pos --> slave_pos based on original intention of the test. Reviewed by: ============ Brandon Nesterenko <brandon.nesterenko@mariadb.com>
30 lines
760 B
Text
30 lines
760 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
*** MDEV-6403: Temporary tables lost at STOP SLAVE in GTID mode if master has not rotated binlog since restart ***
|
|
connection master;
|
|
CREATE TABLE t1 (a INT PRIMARY KEY);
|
|
connection slave;
|
|
connection slave;
|
|
include/stop_slave.inc
|
|
SET sql_log_bin= 0;
|
|
INSERT INTO t1 VALUES (1);
|
|
SET sql_log_bin= 1;
|
|
connection master;
|
|
CREATE TEMPORARY TABLE t2 LIKE t1;
|
|
INSERT INTO t2 VALUE (1);
|
|
INSERT INTO t1 SELECT * FROM t2;
|
|
DROP TEMPORARY TABLE t2;
|
|
connection slave;
|
|
START SLAVE;
|
|
include/wait_for_slave_sql_error.inc [errno=1062]
|
|
STOP SLAVE IO_THREAD;
|
|
SET sql_log_bin= 0;
|
|
DELETE FROM t1 WHERE a=1;
|
|
SET sql_log_bin= 1;
|
|
include/start_slave.inc
|
|
SELECT * FROM t1 ORDER BY a;
|
|
a
|
|
1
|
|
connection master;
|
|
DROP TABLE t1;
|
|
include/rpl_end.inc
|