2019-01-25 11:05:28 +02:00
connection node_2;
connection node_1;
2024-07-04 02:43:32 +02:00
call mtr.add_suppression("WSREP: wsrep_sst_method is set to 'mysqldump' yet mysqld bind_address is set to '127\\.0\\.0\\.1'");
call mtr.add_suppression("Failed to load slave replication state from table mysql\\.gtid_slave_pos");
2019-01-22 13:28:03 +01:00
connection node_1;
connection node_2;
connection node_3;
connection node_1;
CREATE USER 'sst';
2017-03-07 23:47:22 -08:00
GRANT ALL PRIVILEGES ON *.* TO 'sst';
SET GLOBAL wsrep_sst_auth = 'sst:';
2019-01-22 13:28:03 +01:00
connection node_2;
2017-03-07 23:47:22 -08:00
SET GLOBAL wsrep_sst_method = 'mysqldump';
2019-01-22 13:28:03 +01:00
Shutting down server ...
connection node_1;
Cleaning var directory ...
2020-09-17 12:55:06 +03:00
CREATE TABLE t1 (f1 INTEGER NOT NULL PRIMARY KEY) ENGINE=InnoDB;
2017-03-07 23:47:22 -08:00
INSERT INTO t1 VALUES (1);
2019-01-22 13:28:03 +01:00
connection node_2;
Starting server ...
2020-09-17 12:55:06 +03:00
SELECT COUNT(*) AS EXPECT_1 FROM t1;
EXPECT_1
2017-03-07 23:47:22 -08:00
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
2019-01-22 13:28:03 +01:00
connection node_1;
2021-03-18 13:17:30 +05:30
CALL mtr.add_suppression("Slave SQL: Error 'The MariaDB server is running with the --skip-grant-tables option so it cannot execute this statement' on query");
2017-03-07 23:47:22 -08:00
DROP USER sst;
2019-01-22 13:28:03 +01:00
connection node_2;
2021-03-18 13:17:30 +05:30
CALL mtr.add_suppression("Slave SQL: Error 'The MariaDB server is running with the --skip-grant-tables option so it cannot execute this statement' on query");
2017-03-07 23:47:22 -08:00
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");
2024-07-04 02:43:32 +02:00
CALL mtr.add_suppression("Table 'mysql\\.gtid_slave_pos' doesn't exist");
2019-01-22 13:28:03 +01:00
connection node_2;
2024-07-04 02:43:32 +02:00
CALL mtr.add_suppression("Unsupported protocol downgrade: incremental data collection disabled\\. Expect abort");