We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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] ...
The text was updated successfully, but these errors were encountered:
*.: support optimize table stmt radondb#716
f712493
2880e2a
1c5851f
7c3b1ff
[summary] support optimize stmt: ``` OPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL] {TABLE | TABLES} tbl_name [, tbl_name] ... ``` [test case] sqlparser/parse_test.go src/planner/others_plan_test.go src/proxy/optimize_test.go [patch codecov] src/planner/others_plan.go 93.6% src/proxy/optimize.go 100% src/proxy/query.go 94.7% src/vendor/github.com/xelabs/go-mysqlstack/sqlparser/ast.go 87.5%
Merge pull request #722 from hustjieke/feature_support_optimize_table…
7c4781a
…_stmt *.: support optimize table stmt #716
hustjieke
No branches or pull requests
MySQL 8.0 syntax:
In the code of 8.0, actually the key word of "TABLE" is "TABLE | TABLES", so radondb support syntax:
The text was updated successfully, but these errors were encountered: