~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/bulk_replace.test

  • Committer: jay
  • Date: 2008-12-23 00:18:10 UTC
  • Revision ID: jay@piggy.tangent.org-20081223001810-026ibij22q2842k1
Had a --regex-replace by accident. Should have been --replace_column call.  Only showed up in make test, not running single test, because InnoDB key numbers were different with multiple test running.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
--enable_warnings
8
8
CREATE TABLE t1 (a int, unique (a), b int not null, unique(b), c int not null, index(c));
9
9
replace into t1 values (1,1,1),(2,2,2),(3,1,3);
 
10
--sorted_result
10
11
select * from t1;
11
12
check table t1;
12
13
drop table t1;