radondb / radon

RadonDB is an open source, cloud-native MySQL database for building global, scalable cloud services
https://radondb.io/
GNU General Public License v3.0
1.8k stars 217 forks source link

[feature] support OPTIMIZE TABLE Statement #716

Closed hustjieke closed 3 years ago

hustjieke commented 3 years ago

MySQL 8.0 syntax:

OPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL]
    TABLE tbl_name [, tbl_name] ...

In the code of 8.0, actually the key word of "TABLE" is "TABLE | TABLES", so radondb support syntax:

OPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL]
    {TABLE | TABLES}  tbl_name [, tbl_name] ...