mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
15 lines
486 B
Text
15 lines
486 B
Text
call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*");
|
|
connection node_1;
|
|
SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true';
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
connection node_2;
|
|
Killing server ...
|
|
connection node_1;
|
|
ALTER TABLE t1 ADD COLUMN f2 INTEGER;
|
|
connection node_2;
|
|
connection node_2a;
|
|
SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='t1';
|
|
COUNT(*) = 2
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1;
|