~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/mysql-test/innodb-replace.test

Merged in innodb plugin 1.0.2 

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#
12
12
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
13
13
select * from t1;
14
 
--error 1031
 
14
--error ER_DELAYED_NOT_SUPPORTED
15
15
replace delayed into t1 (c1, c2)  values ( "text1","11");
16
16
select * from t1;
17
 
--error 1031
 
17
--error ER_DELAYED_NOT_SUPPORTED
18
18
replace delayed into t1 (c1, c2)  values ( "text1","12");
19
19
select * from t1;
20
20
drop table t1;