summaryrefslogtreecommitdiff
path: root/mysql-test/t/create.test
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-10-16 08:34:17 +0300
committermonty@mashka.mysql.fi <>2003-10-16 08:34:17 +0300
commit6ad94a6d57add4103990d2b3a2b7e6dd0bc9fccd (patch)
tree9c5053024c17924a437b61dbfeddb064a9fa2171 /mysql-test/t/create.test
parent1f801111a795ce6708b63241fc481638076a6666 (diff)
downloadmariadb-git-6ad94a6d57add4103990d2b3a2b7e6dd0bc9fccd.tar.gz
Fix test after merge
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r--mysql-test/t/create.test5
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;