blob: 75fe7d276cdeb6f86239ce9f2acb400f7de0a80f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--source include/galera_cluster.inc
--source include/have_innodb.inc
CREATE TABLE t1 (id INT PRIMARY KEY) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1);
--connection node_2
FLUSH TABLE WITH READ LOCK;
--echo ### This shouldn't block.
FLUSH TABLES t1 FOR EXPORT;
--connection node_1
ALTER TABLE t1 ADD COLUMN f2 INTEGER;
--connection node_2
UNLOCK TABLES;
--echo ### t1 should have column f2
SHOW CREATE TABLE t1;
--connection node_1
INSERT INTO t1 VALUES (2,3);
--connection node_2
SELECT * from t1;
--connection node_1
DROP TABLE t1;
|