1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

after merge fixes

This commit is contained in:
unknown
2003-12-19 17:15:54 +02:00
parent 6988eaffad
commit 778a9029e6
5 changed files with 129 additions and 4 deletions

View File

@@ -119,7 +119,7 @@ a
1
2
drop table t1;
create table t1 (a int not null auto_increment primary key) /*!40102 type=heap */;
create table t1 (a int not null auto_increment primary key) /*!40102 engine=heap */;
insert into t1 values (NULL);
insert into t1 values (-1);
select last_insert_id();
@@ -128,8 +128,8 @@ last_insert_id()
insert into t1 values (NULL);
select * from t1;
a
-1
1
-1
2
drop table t1;
create table t1 (i tinyint unsigned not null auto_increment primary key);