mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
a401c11c4e
* Also modified name regex to include '#' as a valid symbol for tests under disabled.def.
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
#
|
|
# This test restarts a slave while no updates have been performed on the master. No SST is performed.
|
|
#
|
|
|
|
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
# Save original auto_increment_offset values.
|
|
--connection node_1
|
|
let $auto_increment_offset_node_1 = `SELECT @@global.auto_increment_offset`;
|
|
--connection node_2
|
|
let $auto_increment_offset_node_2 = `SELECT @@global.auto_increment_offset`;
|
|
|
|
--connection node_1
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
--connection node_2
|
|
--source include/restart_mysqld.inc
|
|
|
|
--let $galera_connection_name = node_2a
|
|
--let $galera_server_number = 2
|
|
--source include/galera_connect.inc
|
|
--connection node_2a
|
|
--source include/wait_until_ready.inc
|
|
|
|
SELECT COUNT(*) = 1 FROM t1;
|
|
SELECT VARIABLE_VALUE = 2 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
|
|
|
|
DROP TABLE t1;
|
|
|
|
--disable_query_log
|
|
# Restore original auto_increment_offset values.
|
|
--connection node_1
|
|
--eval SET @@global.auto_increment_offset = $auto_increment_offset_node_1;
|
|
--connection node_2a
|
|
--eval SET @@global.auto_increment_offset = $auto_increment_offset_node_2;
|
|
--enable_query_log
|
|
|