diff options
Diffstat (limited to 'mysql-test/suite/parts/inc/partition_mgm.inc')
-rw-r--r-- | mysql-test/suite/parts/inc/partition_mgm.inc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mysql-test/suite/parts/inc/partition_mgm.inc b/mysql-test/suite/parts/inc/partition_mgm.inc index 75834228d7a..5386a929db0 100644 --- a/mysql-test/suite/parts/inc/partition_mgm.inc +++ b/mysql-test/suite/parts/inc/partition_mgm.inc @@ -9,10 +9,8 @@ # Uses following variables: # # engine Use specified storage engine # # can_only_key Storage engine only able to use HASH/KEY (not range/list) # -# (E.g. not ndbcluster) # # part_optA-D Extra partitioning options (E.g. INDEX/DATA DIR) # # # -# have_bug33158 NDB case insensitive create, but case sensitive rename # # no_truncate No support for truncate partition # #------------------------------------------------------------------------------# # Original Author: mattiasj # @@ -144,8 +142,6 @@ SHOW CREATE TABLE tablea; } if (!$lower_case_table_names) { -if (!$have_bug33158) -{ eval CREATE TABLE tablea (a INT) ENGINE = $engine PARTITION BY KEY (a) @@ -164,7 +160,6 @@ RENAME TABLE tableA to TableA; SHOW CREATE TABLE tablea; DROP TABLE tablea; } -} --echo # Test of REMOVE PARTITIONING ALTER TABLE TableA REMOVE PARTITIONING; |