~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/bulk_replace.test

  • Committer: Monty Taylor
  • Date: 2008-07-05 17:09:05 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705170905-itvcfiincapslw9w
Removed redundant declaration.

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
11
10
select * from t1;
12
11
check table t1;
13
12
drop table t1;