diff options
Diffstat (limited to 'mysql-test/t/partition_range.test')
-rw-r--r-- | mysql-test/t/partition_range.test | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/t/partition_range.test b/mysql-test/t/partition_range.test index 76571861188..3ee475f58af 100644 --- a/mysql-test/t/partition_range.test +++ b/mysql-test/t/partition_range.test @@ -74,12 +74,6 @@ create table t1 (a int, b char(20)) partition by range(a) (partition p0 values less than (1,"b")); -create table t1 (a int, b char(20)); -create global index inx on t1 (a,b) -partition by range (a) -(partition p0 values less than (1)); -drop table t1; - create table t1 (a int, b char(20)) partition by range column_list(b) (partition p0 values less than ("b")); |