Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Won't Fix
-
10.0.4, 5.2.14, 5.3.12, 5.5.33a
-
None
-
None
Description
One cannot specify engine options when creating a partitioned table:
> CREATE TABLE bar (id int, key (id) CLUSTERING=YES) ENGINE=TokuDB COMPRESSION=TOKUDB_LZMA PARTITION BY HASH(id) PARTITIONS 4;
|
ERROR 1911 (HY000): Unknown option 'CLUSTERING
|
but adding partitioning later works fine
> CREATE TABLE bar (id int, key (id) CLUSTERING=YES) ENGINE=TokuDB COMPRESSION=TOKUDB_LZMA;
|
Query OK, 0 rows affected (0.02 sec)
|
 |
> ALTER TABLE bar PARTITION BY HASH(id) PARTITIONS 4;
|
Query OK, 0 rows affected (0.08 sec)
|
Records: 0 Duplicates: 0 Warnings: 0
|
Attachments
Issue Links
- relates to
-
MDEV-5271 Support engine-defined attributes per partition
- Closed