summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition.result
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-11-12 14:26:09 +0400
committerunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-11-12 14:26:09 +0400
commit13db8ea843624e98c32ee5013802c288ce919fb1 (patch)
tree834c9bc737575d4511f37a2a9d18b4908d00a3ba /mysql-test/r/partition.result
parent8321278f6ff8cf86fa57753474a0d0a59b26ba1c (diff)
downloadmariadb-git-13db8ea843624e98c32ee5013802c288ce919fb1.tar.gz
'no innodb engine' test failure fixed
mysql-test/r/partition.result: test result fixed mysql-test/r/partition_innodb.result: test result fixed mysql-test/t/partition.test: test moved to partition_innodb mysql-test/t/partition_innodb.test: test moved from partition.test
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r--mysql-test/r/partition.result14
1 files changed, 0 insertions, 14 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result
index e39e84fdd69..4e4bd0bbc0a 100644
--- a/mysql-test/r/partition.result
+++ b/mysql-test/r/partition.result
@@ -1291,18 +1291,4 @@ t1 CREATE TABLE `t1` (
`b` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY RANGE (b) (PARTITION p1 VALUES LESS THAN (10) ENGINE = MyISAM, PARTITION p2 VALUES LESS THAN (20) ENGINE = MyISAM) */
drop table t1, t2;
-create table t1 (int_column int, char_column char(5))
-PARTITION BY RANGE (int_column) subpartition by key (char_column)
-(PARTITION p1 VALUES LESS THAN (5) ENGINE = InnoDB);
-Warnings:
-Warning 1286 Unknown table engine 'InnoDB'
-alter table t1 PARTITION BY RANGE (int_column) subpartition by key (char_column)
-(PARTITION p1 VALUES LESS THAN (5) ENGINE = myisam);
-show create table t1;
-Table Create Table
-t1 CREATE TABLE `t1` (
- `int_column` int(11) DEFAULT NULL,
- `char_column` char(5) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY RANGE (int_column) SUBPARTITION BY KEY (char_column) (PARTITION p1 VALUES LESS THAN (5) ENGINE = MyISAM) */
-drop table t1;
End of 5.1 tests