diff options
author | unknown <monty@mashka.mysql.fi> | 2003-10-16 08:34:17 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-10-16 08:34:17 +0300 |
commit | e83a7c2cf7b95247e639d9dc5318edfa91416e79 (patch) | |
tree | 9c5053024c17924a437b61dbfeddb064a9fa2171 /mysql-test/t/create.test | |
parent | 9c9ff4cce56305031ec8ac320758bdd4aefabddb (diff) | |
download | mariadb-git-e83a7c2cf7b95247e639d9dc5318edfa91416e79.tar.gz |
Fix test after merge
mysql-test/r/create.result:
update test results
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r-- | mysql-test/t/create.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index 0148fa9431a..bc71c597270 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -17,6 +17,9 @@ insert into t1 values (""),(null); select * from t1; drop table t1; +create table t1 (a int not null auto_increment,primary key (a)) type=heap; +drop table t1; + # # Test of some CREATE TABLE'S that should fail # @@ -28,8 +31,6 @@ create table t2 select auto+1 from t1; drop table if exists t1,t2; --error 1167 create table t1 (b char(0) not null, index(b)); ---error 1164 -create table t1 (a int not null auto_increment,primary key (a)) type=heap; --error 1163 create table t1 (a int not null,b text) type=heap; drop table if exists t1; |