1drop table if exists t1;
2create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
3select * from t1;
4c1	c2	stamp
5replace delayed into t1 (c1, c2)  values ( "text1","11");
6ERROR HY000: DELAYED option not supported for table 't1'
7select * from t1;
8c1	c2	stamp
9replace delayed into t1 (c1, c2)  values ( "text1","12");
10ERROR HY000: DELAYED option not supported for table 't1'
11select * from t1;
12c1	c2	stamp
13drop table t1;
14