~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_auto_increment.test

  • Committer: Brian Aker
  • Date: 2009-12-01 23:52:10 UTC
  • mfrom: (1235.1.4 push)
  • Revision ID: brian@gaz-20091201235210-rb720ykhz8e06fda
Merge Brian + Monty. This has the HEAP -> MEMORY change in it, so some
breakage for wrong table name is expected.

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 temporary table t1 (a int not null auto_increment,b int, primary key (a)) engine=heap auto_increment=3;
 
9
create temporary table t1 (a int not null auto_increment,b int, primary key (a)) engine=MEMORY auto_increment=3;
10
10
insert into t1 values (1,1),(NULL,3),(NULL,4);
11
11
delete from t1 where a=4;
12
12
insert into t1 values (NULL,5),(NULL,6);
25
25
create temporary table t1 (
26
26
  skey int NOT NULL auto_increment PRIMARY KEY,
27
27
  sval char(20)
28
 
) engine=heap;
 
28
) engine=MEMORY;
29
29
insert into t1 values (NULL, "hello");
30
30
insert into t1 values (NULL, "hey");
31
31
select * from t1;