~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
drop table if exists t1;
2
CREATE TABLE t1 (
520.1.8 by Brian Aker
Updating tests.
3
gesuchnr int DEFAULT '0' NOT NULL,
4
benutzer_id int DEFAULT '0' NOT NULL,
1 by brian
clean slate
5
PRIMARY KEY (gesuchnr,benutzer_id)
6
);
7
replace into t1 (gesuchnr,benutzer_id) values (2,1);
8
replace into t1 (gesuchnr,benutzer_id) values (1,1);
9
replace into t1 (gesuchnr,benutzer_id) values (1,1);
10
alter table t1 engine=heap;
11
replace into t1 (gesuchnr,benutzer_id) values (1,1);
12
drop table t1;
520.1.8 by Brian Aker
Updating tests.
13
create table t1 (a int not null auto_increment primary key, b char(20) default "default_value");
1 by brian
clean slate
14
insert into t1 values (126,"first"),(63, "middle"),(1,"last");
15
insert into t1 values (1,"error");
16
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
17
replace into t1 values (126,"first updated");
18
replace into t1 values (63,default);
520.1.8 by Brian Aker
Updating tests.
19
select * from t1 order by a;
1 by brian
clean slate
20
a	b
520.1.8 by Brian Aker
Updating tests.
21
1	last
22
63	default_value
1 by brian
clean slate
23
126	first updated
24
drop table t1;