~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/heap_auto_increment.result

pandora-build v0.72 - Moved remaining hard-coded tests into pandora-build
macros.
Add PANDORA_DRIZZLE_BUILD to run the extra checks that drizzle needs that 
plugins would also need to run so we can just use that macro in generated
external plugin builds.
Added support to register_plugins for external plugin building.
Renamed register_plugins.py to pandora-plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
 
create table t1 (a int not null auto_increment,b int, primary key (a)) engine=heap auto_increment=3;
 
2
create temporary table t1 (a int not null auto_increment,b int, primary key (a)) engine=heap auto_increment=3;
3
3
insert into t1 values (1,1),(NULL,3),(NULL,4);
4
4
delete from t1 where a=4;
5
5
insert into t1 values (NULL,5),(NULL,6);
24
24
8       8       8
25
25
9       9       9
26
26
drop table t1;
27
 
create table t1 (
28
 
skey tinyint unsigned NOT NULL auto_increment PRIMARY KEY,
 
27
create temporary table t1 (
 
28
skey int NOT NULL auto_increment PRIMARY KEY,
29
29
sval char(20)
30
30
) engine=heap;
31
31
insert into t1 values (NULL, "hello");