~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/replace.test

  • Committer: Brian Aker
  • Date: 2009-07-31 23:20:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1108.
  • Revision ID: brian@gaz-20090731232014-amd6192q1n8wade0
Heap is now tmp only table

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
drop table if exists t1;
7
7
--enable_warnings
8
8
 
9
 
CREATE TABLE t1 (
10
 
  gesuchnr int DEFAULT '0' NOT NULL,
11
 
  benutzer_id int 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
#