~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/replace.test

  • Committer: Mark Atwood
  • Date: 2012-01-03 02:42:00 UTC
  • mfrom: (2482.1.2 drizzle-build)
  • Revision ID: me@mark.atwood.name-20120103024200-2kjnoze027o3dnwy
mergeĀ lp:~brianaker/drizzle/icc-warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# Test of REPLACE with MyISAM and HEAP
 
2
# Test of REPLACE with MyISAM and MEMORY
3
3
#
4
4
 
5
5
--disable_warnings
6
6
drop table if exists t1;
7
7
--enable_warnings
8
8
 
9
 
CREATE TABLE t1 (
10
 
  gesuchnr int(11) DEFAULT '0' NOT NULL,
11
 
  benutzer_id int(11) DEFAULT '0' NOT NULL,
12
 
  PRIMARY KEY (gesuchnr,benutzer_id)
13
 
);
14
 
 
15
 
replace into t1 (gesuchnr,benutzer_id) values (2,1);
16
 
replace into t1 (gesuchnr,benutzer_id) values (1,1);
17
 
replace into t1 (gesuchnr,benutzer_id) values (1,1);
18
 
alter table t1 engine=heap;
19
 
replace into t1 (gesuchnr,benutzer_id) values (1,1);
20
 
drop table t1;
21
 
 
22
9
#
23
10
# Test when using replace on a key that has used up it's whole range
24
11
#
25
12
 
26
 
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");
27
14
insert into t1 values (126,"first"),(63, "middle"),(1,"last");
28
15
--error ER_DUP_ENTRY
29
16
insert into t1 values (1,"error");
31
18
#replace into t1 values (1,"error");
32
19
replace into t1 values (126,"first updated");
33
20
replace into t1 values (63,default);
34
 
select * from t1;
 
21
select * from t1 order by a;
35
22
drop table t1;
36
23
 
37
24
# End of 4.1 tests