4.2.1版本垂直分区出错

4.2.1版本是不支持垂直分区了吗,创建表的时候使用partition by column 报错,以前的版本是支持垂直分区的呀
sql:
CREATE TABLE t1(c1 int,
→ c2 int,
→ c3 int,
→ c4 int,
→ c5 int)
→ PARTITION BY COLUMN ( c3, (c1, c2));
报错:You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use near ‘COLUMN ( c3, (c1, c2))’ at line 6

支持的,可以提供下sql和报错信息。

感谢回复,sql:
CREATE TABLE t1(c1 int,
→ c2 int,
→ c3 int,
→ c4 int,
→ c5 int)
→ PARTITION BY COLUMN ( c3, (c1, c2));
报错信息:
You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use near ‘COLUMN ( c3, (c1, c2))’ at line 6

重新确认了下 4.x版本架构变动比较大,暂时是不支持垂直分区的。3.x版本是支持的、