Description:
This tests fails on all build hosts -
how could this tree status ever be pushed?
=====
main.partition_mgm [ fail ]
mysqltest: At line 14: query 'ALTER TABLE t1 REORGANIZE PARTITION' failed: 1511: REORGANISE PARTITION without parameters can only be used on auto-partitioned tables using HASH PARTITIONs
The result from queries just before the failure was:
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a INT PRIMARY KEY)
ENGINE MYISAM
PARTITION BY HASH (a)
PARTITIONS 1;
INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
ALTER TABLE t1 REORGANIZE PARTITION;
More results from queries before failure can be found in /PATH/mysql-test/var/log/partition_mgm.log
=====
How to repeat:
Run the test suite.