1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Simple cleanups

This commit is contained in:
monty@mysql.com
2003-12-18 14:40:19 +02:00
parent 6e58a7c49e
commit b9d8f108c1
3 changed files with 27 additions and 32 deletions

View File

@ -82,7 +82,7 @@ insert into t1 values (NULL);
select * from t1;
drop table t1;
create table t1 (a int not null auto_increment primary key) /*!41002 type=heap */;
create table t1 (a int not null auto_increment primary key) /*!40102 type=heap */;
insert into t1 values (NULL);
insert into t1 values (-1);
select last_insert_id();