mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / r / lock_multi_bug38499.result
blob9b3f57c8e530b5ad7fb0b2fd99811cd2655759df
1 SET @odl_sync_frm = @@global.sync_frm;
2 SET @@global.sync_frm = OFF;
3 DROP TABLE IF EXISTS t1;
4 CREATE TABLE t1( a INT, b INT );
5 INSERT INTO t1 VALUES (1, 1), (2, 2), (3, 3), (4, 4);
6 # 1. test regular tables
7 # 1.1. test altering of columns that multiupdate doesn't use
8 # 1.1.1. normal mode
9 # 1.1.2. PS mode
10 # 1.2. test altering of columns that multiupdate uses
11 # 1.2.1. normal mode
12 # 1.2.2. PS mode
13 ALTER TABLE t1 ADD COLUMN a INT;
14 # 2. test UNIONs
15 # 2.1. test altering of columns that multiupdate doesn't use
16 # 2.1.1. normal mode
17 # 2.1.2. PS mode
18 # 2.2. test altering of columns that multiupdate uses
19 # 2.2.1. normal mode
20 # 2.2.2. PS mode
21 DROP TABLE t1;
22 SET @@global.sync_frm = @odl_sync_frm;