diff options
Diffstat (limited to 'mysql-test/suite/galera/r/galera_kill_ddl.result')
-rw-r--r-- | mysql-test/suite/galera/r/galera_kill_ddl.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/r/galera_kill_ddl.result b/mysql-test/suite/galera/r/galera_kill_ddl.result new file mode 100644 index 00000000..33a1b190 --- /dev/null +++ b/mysql-test/suite/galera/r/galera_kill_ddl.result @@ -0,0 +1,19 @@ +connection node_2; +connection node_1; +connection node_1; +connection node_2; +connection node_1; +call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); +SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true'; +CREATE TABLE t1 (f1 INTEGER NOT NULL PRIMARY KEY) 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(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='t1'; +COUNT(*) +2 +connection node_1; +DROP TABLE t1; |