1
-- source include/have_innodb.inc
2
# embedded server ignores 'delayed', so skip this
3
-- source include/not_embedded.inc
6
drop table if exists t1;
12
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
15
replace delayed into t1 (c1, c2) values ( "text1","11");
18
replace delayed into t1 (c1, c2) values ( "text1","12");