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/t/auto_increment.test | |
parent | 6988eaffade652053ab5154ace6a321e4d2ff9c6 (diff) | |
download | mariadb-git-778a9029e610f58b2988dc737ffeee70ac1a1f5a.tar.gz |
after merge fixes
Diffstat (limited to 'mysql-test/t/auto_increment.test')
-rw-r--r-- | mysql-test/t/auto_increment.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/auto_increment.test b/mysql-test/t/auto_increment.test index bb9394dd6d2..99a75889431 100644 --- a/mysql-test/t/auto_increment.test +++ b/mysql-test/t/auto_increment.test @@ -85,7 +85,7 @@ insert into t1 values (NULL); select * from t1; 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(); |