diff options
author | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2006-05-25 19:20:35 +0500 |
---|---|---|
committer | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2006-05-25 19:20:35 +0500 |
commit | 597ceb3bc0bc922a1d14f68032192eb05ea8141b (patch) | |
tree | 93a3b238574bf81f71ee4f4582d19f3d92e5225c /mysql-test/r/partition.result | |
parent | 644efa51db79c53a017fe5d99a8d271147537740 (diff) | |
download | mariadb-git-597ceb3bc0bc922a1d14f68032192eb05ea8141b.tar.gz |
test fix
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index 71d4f1bb376..3be9f3edee2 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -890,15 +890,15 @@ s1 2 3 drop table t1; -create table t1 (a int) -partition by key (a) -(partition p0 engine = MERGE); -ERROR HY000: MyISAM Merge handler cannot be used in partitioned tables create table t1 (a int) engine=memory partition by key(a); insert into t1 values (1); create index inx1 on t1(a); drop table t1; +create table t1 (a int) +partition by key (a) +(partition p0 engine = MERGE); +ERROR HY000: MyISAM Merge handler cannot be used in partitioned tables create table t1 (a varchar(1)) partition by key (a) as select 'a'; |