1#
2# this is a test of bulk-insert code
3#
4
5--disable_warnings
6drop table if exists t1;
7--enable_warnings
8CREATE TABLE t1 (a int, unique (a), b int not null, unique(b), c int not null, index(c));
9replace into t1 values (1,1,1),(2,2,2),(3,1,3);
10select * from t1;
11check table t1;
12drop table t1;
13
14# End of 4.1 tests
15