1
# embedded server ignores 'delayed', so skip this
4
drop table if exists t1;
10
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
12
--error ER_DELAYED_NOT_SUPPORTED
13
replace delayed into t1 (c1, c2) values ( "text1","11");
15
--error ER_DELAYED_NOT_SUPPORTED
16
replace delayed into t1 (c1, c2) values ( "text1","12");