mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
7f41473320
The test case did not start with fresh binlogs, so in some cases, dependending on the order MTR runs the tests, it would try to show binlog contents from invalid positions (binary log would contain unexpected events from previous test). We fix this by deploying a RESET MASTER at the beginning of the test case.
15 lines
524 B
Text
15 lines
524 B
Text
-- source include/not_ndb_default.inc
|
|
-- source include/have_log_bin.inc
|
|
-- source include/have_binlog_format_statement.inc
|
|
RESET MASTER;
|
|
|
|
let $binlog_start= query_get_value(SHOW MASTER STATUS, Position, 1);
|
|
CREATE TABLE t1 (c1 char(50));
|
|
LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
|
|
LOAD DATA CONCURRENT INFILE '../../std_data/words.dat' INTO TABLE t1;
|
|
-- source include/show_binlog_events.inc
|
|
DROP TABLE t1;
|
|
|
|
let $lock_option= CONCURRENT;
|
|
let $engine_type=MyISAM;
|
|
-- source extra/rpl_tests/rpl_loaddata.test
|