~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/r/innodb-replace.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
select * from t1;
4
4
c1      c2      stamp
5
5
replace delayed into t1 (c1, c2)  values ( "text1","11");
6
 
ERROR HY000: Table storage engine for 't1' doesn't have this option
 
6
ERROR HY000: DELAYED option not supported for table 't1'
7
7
select * from t1;
8
8
c1      c2      stamp
9
9
replace delayed into t1 (c1, c2)  values ( "text1","12");
10
 
ERROR HY000: Table storage engine for 't1' doesn't have this option
 
10
ERROR HY000: DELAYED option not supported for table 't1'
11
11
select * from t1;
12
12
c1      c2      stamp
13
13
drop table t1;