~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/replace.result

  • Committer: Brian Aker
  • Date: 2008-10-18 15:43:20 UTC
  • mto: (492.3.20 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081018154320-jc9jyij3mdf08abp
Updating tests.

Show diffs side-by-side

added added

removed removed

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