~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/bulk_replace.test

  • Committer: Brian Aker
  • Date: 2008-07-13 21:20:24 UTC
  • Revision ID: brian@tangent.org-20080713212024-o6263c1vha7yxdeu
More bool removal. More cow bell!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# this is a test of bulk-insert code
3
 
#
4
 
 
5
 
--disable_warnings
6
 
drop table if exists t1;
7
 
--enable_warnings
8
 
CREATE TABLE t1 (a int, unique (a), b int not null, unique(b), c int not null, index(c));
9
 
replace into t1 values (1,1,1),(2,2,2),(3,1,3);
10
 
--sorted_result
11
 
select * from t1;
12
 
check table t1;
13
 
drop table t1;
14
 
 
15
 
# End of 4.1 tests