diff options
author | unknown <monty@mysql.com> | 2003-12-19 17:15:54 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-12-19 17:15:54 +0200 |
commit | 778a9029e610f58b2988dc737ffeee70ac1a1f5a (patch) | |
tree | 7a620ead447a437bbd18bfe16bc63e7a02d4b3d3 /mysql-test/r/auto_increment.result | |
parent | 6988eaffade652053ab5154ace6a321e4d2ff9c6 (diff) | |
download | mariadb-git-778a9029e610f58b2988dc737ffeee70ac1a1f5a.tar.gz |
after merge fixes
Diffstat (limited to 'mysql-test/r/auto_increment.result')
-rw-r--r-- | mysql-test/r/auto_increment.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/auto_increment.result b/mysql-test/r/auto_increment.result index df14fc74f05..7a7faf0db9a 100644 --- a/mysql-test/r/auto_increment.result +++ b/mysql-test/r/auto_increment.result @@ -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); |