~stewart/drizzle/embedded-innodb-configuration-flush-log-at-trx-commit

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/tests/t/replace.test

  • Committer: Stewart Smith
  • Date: 2010-05-11 04:32:24 UTC
  • mfrom: (1435.1.4)
  • Revision ID: stewart@flamingspork.com-20100511043224-u5h37txkgwyx2gsd
Merged embedded-innodb-configuration-file-format into embedded-innodb-configuration-flush-log-at-trx-commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
insert into t1 values (126,"first"),(63, "middle"),(1,"last");
15
15
--error ER_DUP_ENTRY,1022
16
16
insert into t1 values (1,"error");
17
 
#--error ER_DUP_ENTRY
18
 
#replace into t1 values (1,"error");
 
17
replace into t1 values (1,"error");
19
18
replace into t1 values (126,"first updated");
20
19
replace into t1 values (63,default);
21
20
select * from t1 order by a;