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:
CHECK TABLE tbl_name [, tbl_name] ... [option] ... option: { FOR UPGRADE | QUICK | FAST | MEDIUM | EXTENDED | CHANGED }
Actually, the key word "TABLE" should be "TABLE | TABLES", so radondb will support syntax next:
CHECK {TABLE | TABLES} tbl_name [, tbl_name] ... [option] ... option: { FOR UPGRADE | QUICK | FAST | MEDIUM | EXTENDED | CHANGED }
The text was updated successfully, but these errors were encountered:
*.:support check table stmt radondb#718
cf3541f
f337422
[summary] support check stmt: ``` CHECK {TABLE | TABLES} tbl_name [, tbl_name] ... [option] ... option: { FOR UPGRADE | QUICK | FAST | MEDIUM | EXTENDED | CHANGED } ``` [test case] sqlparser/parse_test.go src/planner/others_plan_test.go src/proxy/table_maintenance_test.go [patch codecov] src/planner/others_plan.go 94.9% src/proxy/table_maintenance.go 100% src/proxy/query.go 94.8% src/vendor/github.com/xelabs/go-mysqlstack/sqlparser/ast.go 87.5%
e6bb0c3
proxy: fix wrong word radondb#718
eaf3d40
[summary] fix word "optimize" to "check" fix word "note" to "status" [test case] N/A [patch codecov] N/A
Merge pull request #723 from hustjieke/feature_support_check_table_stmt
9c0186b
*.:support check table stmt #718
hustjieke
No branches or pull requests
MySQL 8.0 syntax:
Actually, the key word "TABLE" should be "TABLE | TABLES", so radondb will support syntax next:
The text was updated successfully, but these errors were encountered: