Skip to content

Commit

Permalink
Follow-up #2 for MDEV-6720 (enable connection log in mysqltest by def…
Browse files Browse the repository at this point in the history
…ault)

Result file in engines/funcs test suite needs to be updated accordingly
  • Loading branch information
elenst committed Jun 26, 2016
1 parent 4dc5075 commit 8bec974
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions mysql-test/suite/engines/funcs/r/rpl_row_until.result
@@ -1,14 +1,19 @@
include/master-slave.inc
[connection master]
connection master;
CREATE TABLE t1(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 VALUES (1),(2),(3),(4);
DROP TABLE t1;
CREATE TABLE t2(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t2 VALUES (1),(2);
connection slave;
connection master;
INSERT INTO t2 VALUES (3),(4);
DROP TABLE t2;
connection slave;
include/stop_slave.inc
RESET SLAVE;
connection slave;
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_drop_t1
include/wait_for_slave_sql_to_stop.inc
SELECT * FROM t1;
Expand Down Expand Up @@ -36,6 +41,8 @@ n
include/check_slave_param.inc [Exec_Master_Log_Pos]
START SLAVE;
include/wait_for_slave_to_start.inc
connection master;
connection slave;
include/stop_slave.inc
START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=master_pos_create_t2
include/wait_for_slave_param.inc [Until_Log_Pos]
Expand Down

0 comments on commit 8bec974

Please sign in to comment.