1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
# =========== Purpose ===========
#
# To test that if different primary key is used on master and slave
# and if there is an Unique key present on slave then that should be
# used for lookup replicated rows.
# Earlier in above cases a TABLE_SCAN was being performed which can be
# slower than INDEX_SCAN that will be performed after the bug fix.
#
# ========= Reference ==========
# Bug#26450129:DEAD BRANCH IN SEARCH_KEY_IN_TABLE()
# The status variable Replica_rows_last_search_algorithm_used is defined
# only in Debug mode, running this test in non-debug mode will cause
# assert failure.
--source include/have_debug.inc
--source include/have_binlog_format_row.inc
--let $rpl_skip_start_slave = 1
--source include/master-slave.inc
--echo ==== Initialize ====
--source include/rpl_connection_slave.inc
SET @old_slave_rows_search_algorithms = @@global.slave_rows_search_algorithms;
SET @@global.slave_rows_search_algorithms = 'INDEX_SCAN,TABLE_SCAN';
--source include/start_slave.inc
--source include/rpl_connection_master.inc
SET @@session.binlog_row_image = 'MINIMAL';
SET @@session.sql_log_bin = 0;
CREATE TABLE t1 (a INT, b INT, PRIMARY KEY(b));
SET @@session.sql_log_bin = 1;
--source include/rpl_connection_slave.inc
CREATE TABLE t1 (a INT, b INT NOT NULL, UNIQUE KEY(b), PRIMARY KEY(a));
--source include/rpl_connection_master.inc
--let $row_count = 100
--let $rows = (0, 0)
--let $i = 1
while ($i < $row_count) {
--let $rows = $rows, ($i, $i)
--inc $i
}
--disable_query_log
--echo INSERT INTO t1 VALUES [$row_count rows];
eval INSERT INTO t1 VALUES $rows;
--enable_query_log
--source include/sync_slave_sql_with_master.inc
--echo ==== Test ====
--source include/rpl_connection_master.inc
DELETE FROM t1 WHERE b != 0 ORDER BY b DESC;
--source include/sync_slave_sql_with_master.inc
--let $assert_cond = "[SHOW STATUS LIKE \"Replica_rows_last_search_algorithm_used\", Value, 1]" = "INDEX_SCAN"
--let $assert_text= The search algorithm used while deleting rows is INDEX_SCAN, in the code before this bug it was TABLE_SCAN
--source include/assert.inc
# Cleanup
--source include/rpl_connection_master.inc
DROP TABLE t1;
--source include/sync_slave_sql_with_master.inc
--source include/stop_slave.inc
SET @@global.slave_rows_search_algorithms = @old_slave_rows_search_algorithms;
--let $rpl_only_running_threads=1
--source include/rpl_end.inc
|