galera_ipv6_mysqldump.result 1.77 KB
Newer Older
1 2
connection node_2;
connection node_1;
3 4 5 6 7 8 9
call mtr.add_suppression("WSREP: wsrep_sst_method is set to 'mysqldump' yet mysqld bind_address is set to'");
call mtr.add_suppression("Failed to load slave replication state from table mysql.gtid_slave_pos");
connection node_1;
connection node_2;
connection node_3;
connection node_1;
CREATE USER 'sst';
10 11
GRANT ALL PRIVILEGES ON *.* TO 'sst';
SET GLOBAL wsrep_sst_auth = 'sst:';
12
connection node_2;
13
SET GLOBAL wsrep_sst_method = 'mysqldump';
14 15 16
Shutting down server ...
connection node_1;
Cleaning var directory ...
17 18
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1);
19 20
connection node_2;
Starting server ...
21 22 23 24 25 26 27
SELECT COUNT(*) = 1 FROM t1;
COUNT(*) = 1
1
DROP TABLE t1;
SELECT VARIABLE_VALUE LIKE '%[::1]%' FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_incoming_addresses';
VARIABLE_VALUE LIKE '%[::1]%'
1
28
connection node_1;
29 30
CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query");
DROP USER sst;
31
connection node_2;
32 33 34 35 36 37
CALL mtr.add_suppression("Slave SQL: Error 'The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement' on query");
CALL mtr.add_suppression("InnoDB: Error: Table \"mysql\"\\.\"innodb_index_stats\" not found");
CALL mtr.add_suppression("Can't open and lock time zone table");
CALL mtr.add_suppression("Can't open and lock privilege tables");
CALL mtr.add_suppression("Info table is not ready to be used");
CALL mtr.add_suppression("Native table .* has the wrong structure");
38
CALL mtr.add_suppression("Table \'mysql.gtid_slave_pos\' doesn\'t exist");
39
connection node_2;
40
CALL mtr.add_suppression("Unsupported protocol downgrade: incremental data collection disabled. Expect abort");