Compatibility: support ALTER TABLE... PARTITION BY #9682
Labels
Component: Query Serving
Type: Enhancement
Logical improvement (somewhere between a bug and feature)
Our parser today does not support
ALTER TABLE ... PARTITION BY
. It does support statements likeALTER TABLE ... ADD PARTITION
orALTER TABLE.... REORGANIZE PARTITION
etc. But is missing on the "completely repartition like so" option.Example query:
MySQL's
ALTER TABLE
lets you repartition everything according to a completely new scheme. Basically, it uses the same partitioning syntax fromCREATE TABLE
. We already have this supported inCREATE TABLE
in the form of PartitionOptionAll we need to do to close this issue is to support
PartitionOption
inside AlterTableSelf assigning
The text was updated successfully, but these errors were encountered: