github.com/matrixorigin/matrixone@v1.2.0/test/distributed/cases/dml/show/show3.result (about) 1 set global enable_privilege_cache = off; 2 create table t1 (a int, b int, c int) COMMENT='before cluster by' PARTITION BY hash(a+b) PARTITIONS 2 CLUSTER BY (a,b); 3 create table t2 (a int, b int, c int) CLUSTER BY (a,b) PARTITION BY hash(a+b) PARTITIONS 2 COMMENT='after cluster by'; 4 SQL parser error: You have an error in your SQL syntax; check the manual that corresponds to your MatrixOne server version for the right syntax to use. syntax error at line 1 column 64 near " PARTITION BY hash(a+b) PARTITIONS 2 COMMENT='after cluster by';"; 5 create table t3 (a int, b int, c int) PARTITION BY hash(a+b) PARTITIONS 2 COMMENT='before cluster by' CLUSTER BY (a,b); 6 SQL parser error: You have an error in your SQL syntax; check the manual that corresponds to your MatrixOne server version for the right syntax to use. syntax error at line 1 column 82 near " COMMENT='before cluster by' CLUSTER BY (a,b);"; 7 set global enable_privilege_cache = on;