Skip to content

Commit 8bec974

Browse files
committed
Follow-up #2 for MDEV-6720 (enable connection log in mysqltest by default)
Result file in engines/funcs test suite needs to be updated accordingly
1 parent 4dc5075 commit 8bec974

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

mysql-test/suite/engines/funcs/r/rpl_row_until.result

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
include/master-slave.inc
22
[connection master]
3+
connection master;
34
CREATE TABLE t1(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
45
INSERT INTO t1 VALUES (1),(2),(3),(4);
56
DROP TABLE t1;
67
CREATE TABLE t2(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
78
INSERT INTO t2 VALUES (1),(2);
9+
connection slave;
10+
connection master;
811
INSERT INTO t2 VALUES (3),(4);
912
DROP TABLE t2;
13+
connection slave;
1014
include/stop_slave.inc
1115
RESET SLAVE;
16+
connection slave;
1217
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_drop_t1
1318
include/wait_for_slave_sql_to_stop.inc
1419
SELECT * FROM t1;
@@ -36,6 +41,8 @@ n
3641
include/check_slave_param.inc [Exec_Master_Log_Pos]
3742
START SLAVE;
3843
include/wait_for_slave_to_start.inc
44+
connection master;
45+
connection slave;
3946
include/stop_slave.inc
4047
START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_create_t2
4148
include/wait_for_slave_param.inc [Until_Log_Pos]

0 commit comments

Comments
 (0)