~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/auto_increment.result

Merge padraig's conflict resolves and trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
1
65
65
2
66
66
drop table t1;
67
 
create table t1 (a int not null auto_increment primary key) /*!40102 engine=heap */;
 
67
create temporary table t1 (a int not null auto_increment primary key) /*!40102 engine=heap */;
68
68
insert into t1 values (NULL);
69
69
insert into t1 values (-1);
70
70
select last_insert_id();