radondb/radon

[feature] support OPTIMIZE TABLE Statement

hustjieke opened this issue · 0 comments

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] ...