obclient(root@test)[testdb]> CREATE TABLE ora_tbl1_heap (col1 INT, col2 INT) ORGANIZATION = HEAP;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use near ‘ORGANIZATION = HEAP’ at line 1
obclient(root@test)[testdb]>
obclient(root@test)[testdb]>
obclient(root@test)[testdb]> CREATE TABLE ora_tbl1_heap (col1 INT, col2 INT) ORGANIZATION HEAP;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use near ‘ORGANIZATION HEAP’ at line 1
obclient(root@test)[testdb]>
数据库版本是4.3.5.0,数据库是mysql模式,为啥会错呢?