mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
c4f5326bb7
The problem was that my_hash_sort didn't properly delete end-space characters properly, so strings that should compare identically was seen as different strings. (Space was handled correctly, but not NBSP) This caused duplicate key errors when a heap table was converted to Aria as part of overflow in group by. Fixed by removing all characters that compares as end space when creating a hash. Other things: - Fixed that --sorted_results also works for errors in mysqltest. - Speed up hash by not comparing strings that has different hash. - Speed up many my_hash_sort functions by using registers to calculate hash instead of pointers. This was previously done for some functions, but not for all. - Made a macro of the hash function, to simplify code and to be able to experiment with new hash functions. client/mysqltest.cc: Fixed that --sorted_results also works for error messages. mysql-test/r/ctype_partitions.result: New test to ensure that partitions on hash works mysql-test/suite/multi_source/gtid.result: Updated result mysql-test/suite/multi_source/gtid.test: Test that --sorted_result works for error messages mysql-test/suite/multi_source/gtid_ignore_duplicates.result: Updated result mysql-test/suite/multi_source/gtid_ignore_duplicates.test: Updated result mysql-test/suite/multi_source/load_data.result: Updated result mysql-test/suite/multi_source/load_data.test: Updated result mysql-test/t/ctype_partitions.test: New test to ensure that partitions on hash works storage/heap/hp_write.c: Speed up hash by not comparing strings that has different hash. storage/maria/ma_check.c: Extra debug strings/ctype-bin.c: Use macro for hash function strings/ctype-latin1.c: Use macro for hash function Use registers to calculate hash (speedup) strings/ctype-mb.c: Use macro for hash function Use registers to calculate hash (speedup) strings/ctype-simple.c: Use macro for hash function Use same variable names as in other my_hash_sort functions. Update my_hash_sort_simple() to properly remove end space (patch by Bar) strings/ctype-uca.c: Ignore duplicated space inside strings and end space in my_hash_sort_uca(). This fixed MDEV-6255 Use macro for hash function Use registers to calculate hash (speedup) strings/ctype-ucs2.c: Use macro for hash function Use registers to calculate hash (speedup) strings/ctype-utf8.c: Use macro for hash function Use registers to calculate hash (speedup) strings/strings_def.h: Made a macro of the hash function, to simplify code and to be able to experiment with new hash functions.
308 lines
9.2 KiB
Text
308 lines
9.2 KiB
Text
--source include/not_embedded.inc
|
|
--source include/have_innodb.inc
|
|
|
|
--echo *** Test all-to-all replication with --gtid-ignore-duplicates ***
|
|
|
|
--connect (server_1,127.0.0.1,root,,,$SERVER_MYPORT_1)
|
|
--connect (server_2,127.0.0.1,root,,,$SERVER_MYPORT_2)
|
|
--connect (server_3,127.0.0.1,root,,,$SERVER_MYPORT_3)
|
|
--connect (server_4,127.0.0.1,root,,,$SERVER_MYPORT_4)
|
|
|
|
# Setup A <-> B, B <-> C, C <-> A, and A -> D.
|
|
|
|
--connection server_1
|
|
SET @old_parallel= @@GLOBAL.slave_parallel_threads;
|
|
SET GLOBAL slave_parallel_threads=5;
|
|
SET @old_ignore_duplicates= @@GLOBAL.gtid_ignore_duplicates;
|
|
SET GLOBAL gtid_ignore_duplicates=1;
|
|
SET GLOBAL gtid_domain_id= 1;
|
|
SET SESSION gtid_domain_id= 1;
|
|
--replace_result $SERVER_MYPORT_2 MYPORT_2
|
|
eval CHANGE MASTER 'b2a' TO master_port=$SERVER_MYPORT_2, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
--replace_result $SERVER_MYPORT_3 MYPORT_3
|
|
eval CHANGE MASTER 'c2a' TO master_port=$SERVER_MYPORT_3, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
set default_master_connection = 'b2a';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = 'c2a';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = '';
|
|
|
|
--connection server_2
|
|
SET @old_parallel= @@GLOBAL.slave_parallel_threads;
|
|
SET GLOBAL slave_parallel_threads=5;
|
|
SET @old_ignore_duplicates= @@GLOBAL.gtid_ignore_duplicates;
|
|
SET GLOBAL gtid_ignore_duplicates=1;
|
|
SET GLOBAL gtid_domain_id= 2;
|
|
SET SESSION gtid_domain_id= 2;
|
|
--replace_result $SERVER_MYPORT_1 MYPORT_1
|
|
eval CHANGE MASTER 'a2b' TO master_port=$SERVER_MYPORT_1, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
--replace_result $SERVER_MYPORT_3 MYPORT_3
|
|
eval CHANGE MASTER 'c2b' TO master_port=$SERVER_MYPORT_3, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
set default_master_connection = 'a2b';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = 'c2b';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = '';
|
|
|
|
--connection server_3
|
|
SET @old_parallel= @@GLOBAL.slave_parallel_threads;
|
|
SET GLOBAL slave_parallel_threads=5;
|
|
SET @old_ignore_duplicates= @@GLOBAL.gtid_ignore_duplicates;
|
|
SET GLOBAL gtid_ignore_duplicates=1;
|
|
SET GLOBAL gtid_domain_id= 3;
|
|
SET SESSION gtid_domain_id= 3;
|
|
--replace_result $SERVER_MYPORT_1 MYPORT_1
|
|
eval CHANGE MASTER 'a2c' TO master_port=$SERVER_MYPORT_1, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
--replace_result $SERVER_MYPORT_2 MYPORT_2
|
|
eval CHANGE MASTER 'b2c' TO master_port=$SERVER_MYPORT_2, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
set default_master_connection = 'a2c';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = 'b2c';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = '';
|
|
|
|
--connection server_4
|
|
SET @old_parallel= @@GLOBAL.slave_parallel_threads;
|
|
SET GLOBAL slave_parallel_threads=5;
|
|
SET @old_ignore_duplicates= @@GLOBAL.gtid_ignore_duplicates;
|
|
SET GLOBAL gtid_ignore_duplicates=1;
|
|
SET GLOBAL gtid_domain_id= 1;
|
|
SET SESSION gtid_domain_id= 1;
|
|
--replace_result $SERVER_MYPORT_1 MYPORT_1
|
|
eval CHANGE MASTER 'a2d' TO master_port=$SERVER_MYPORT_1, master_host='127.0.0.1', master_user='root', master_use_gtid=slave_pos;
|
|
set default_master_connection = 'a2d';
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
set default_master_connection = '';
|
|
|
|
|
|
--connection server_1
|
|
ALTER TABLE mysql.gtid_slave_pos ENGINE=InnoDB;
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (2);
|
|
INSERT INTO t1 VALUES (3);
|
|
COMMIT;
|
|
INSERT INTO t1 VALUES (4), (5);
|
|
INSERT INTO t1 VALUES (6);
|
|
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_2
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
--connection server_3
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
--connection server_4
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
--connection server_1
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 ORDER BY a;
|
|
|
|
# Test that we can connect at a GTID position that has not yet reached
|
|
# that master server.
|
|
# We stop the connections C->B and A->B, create an event on C, Check that
|
|
# the event has reached A (but not B). Then let A stop and re-connect to
|
|
# B, which will connect at the new event, which is in the future for B.
|
|
|
|
--connection server_3
|
|
INSERT INTO t1 VALUES (10);
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_2
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 10 ORDER BY a;
|
|
STOP SLAVE "c2b";
|
|
SET default_master_connection = "c2b";
|
|
--source include/wait_for_slave_to_stop.inc
|
|
STOP SLAVE "a2b";
|
|
SET default_master_connection = "a2b";
|
|
--source include/wait_for_slave_to_stop.inc
|
|
|
|
--connection server_3
|
|
INSERT INTO t1 VALUES (11);
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_1
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 10 ORDER BY a;
|
|
SET default_master_connection = "b2a";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
|
|
--connection server_2
|
|
INSERT INTO t1 VALUES (12);
|
|
SELECT * FROM t1 WHERE a >= 10 ORDER BY a;
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_1
|
|
START SLAVE "b2a";
|
|
SET default_master_connection = "b2a";
|
|
--source include/wait_for_slave_to_start.inc
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 10 ORDER BY a;
|
|
|
|
--connection server_2
|
|
START SLAVE "c2b";
|
|
SET default_master_connection = "c2b";
|
|
--source include/wait_for_slave_to_start.inc
|
|
START SLAVE "a2b";
|
|
SET default_master_connection = "a2b";
|
|
--source include/wait_for_slave_to_start.inc
|
|
|
|
--connection server_1
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_2
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 10 ORDER BY a;
|
|
|
|
|
|
--echo *** Test also with not using parallel replication.
|
|
|
|
--connection server_1
|
|
SET default_master_connection = "b2a";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET default_master_connection = "c2a";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET GLOBAL slave_parallel_threads=0;
|
|
SET default_master_connection = "b2a";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
SET default_master_connection = "c2a";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
|
|
|
|
--connection server_2
|
|
SET default_master_connection = "a2b";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET default_master_connection = "c2b";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET GLOBAL slave_parallel_threads=0;
|
|
SET default_master_connection = "a2b";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
SET default_master_connection = "c2b";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
|
|
|
|
--connection server_3
|
|
SET default_master_connection = "a2c";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET default_master_connection = "b2c";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET GLOBAL slave_parallel_threads=0;
|
|
SET default_master_connection = "a2c";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
SET default_master_connection = "b2c";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
|
|
|
|
--connection server_4
|
|
SET default_master_connection = "a2d";
|
|
STOP SLAVE;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
SET GLOBAL slave_parallel_threads=0;
|
|
SET default_master_connection = "a2d";
|
|
START SLAVE;
|
|
--source include/wait_for_slave_to_start.inc
|
|
|
|
|
|
--connection server_2
|
|
INSERT INTO t1 VALUES (21);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (22);
|
|
INSERT INTO t1 VALUES (23);
|
|
COMMIT;
|
|
INSERT INTO t1 VALUES (24), (25);
|
|
INSERT INTO t1 VALUES (26);
|
|
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection server_1
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 20 ORDER BY a;
|
|
|
|
--connection server_3
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 20 ORDER BY a;
|
|
|
|
--connection server_4
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 20 ORDER BY a;
|
|
|
|
--connection server_2
|
|
--source include/sync_with_master_gtid.inc
|
|
SELECT * FROM t1 WHERE a >= 20 ORDER BY a;
|
|
|
|
|
|
# Clean up.
|
|
--connection server_1
|
|
SET GLOBAL gtid_domain_id=0;
|
|
--sorted_result
|
|
STOP ALL SLAVES;
|
|
SET GLOBAL slave_parallel_threads= @old_parallel;
|
|
SET GLOBAL gtid_ignore_duplicates= @old_ignore_duplicates;
|
|
|
|
--connection server_2
|
|
SET GLOBAL gtid_domain_id=0;
|
|
--sorted_result
|
|
STOP ALL SLAVES;
|
|
SET GLOBAL slave_parallel_threads= @old_parallel;
|
|
SET GLOBAL gtid_ignore_duplicates= @old_ignore_duplicates;
|
|
|
|
--connection server_3
|
|
SET GLOBAL gtid_domain_id=0;
|
|
--sorted_result
|
|
STOP ALL SLAVES;
|
|
SET GLOBAL slave_parallel_threads= @old_parallel;
|
|
SET GLOBAL gtid_ignore_duplicates= @old_ignore_duplicates;
|
|
|
|
--connection server_4
|
|
SET GLOBAL gtid_domain_id=0;
|
|
--sorted_result
|
|
STOP ALL SLAVES;
|
|
SET GLOBAL slave_parallel_threads= @old_parallel;
|
|
SET GLOBAL gtid_ignore_duplicates= @old_ignore_duplicates;
|
|
|
|
--connection server_1
|
|
DROP TABLE t1;
|
|
--source reset_master_slave.inc
|
|
--disconnect server_1
|
|
|
|
--connection server_2
|
|
DROP TABLE t1;
|
|
--source reset_master_slave.inc
|
|
--disconnect server_2
|
|
|
|
--connection server_3
|
|
DROP TABLE t1;
|
|
--source reset_master_slave.inc
|
|
--disconnect server_3
|
|
|
|
--connection server_4
|
|
DROP TABLE t1;
|
|
--source reset_master_slave.inc
|
|
--disconnect server_4
|