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
In 8.0, the drop index syntax:
DROP INDEX index_name ON tbl_name [algorithm_option | lock_option] ... algorithm_option: ALGORITHM [=] {DEFAULT | INPLACE | COPY} lock_option: LOCK [=] {DEFAULT | NONE | SHARED | EXCLUSIVE}
radon now support:
DROP INDEX index_name ON table_name
radon should add options after stmt.
The text was updated successfully, but these errors were encountered:
sqlparser: add drop index "lock | algorithm option" radondb#693
fc10792
[summary] 1. Add drop index "lock | algorithm option". 2. Refactor lock_algorithm_option in create index. [test case] src/proxy/ddl_test.go src/vendor/github.com/xelabs/go-mysqlstack/sqlparser/ddl_test.go [patch codecov] src/vendor/github.com/xelabs/go-mysqlstack/sqlparser/ast.go 96.2% src/vendor/github.com/xelabs/go-mysqlstack/sqlparser/ast_funcs.go 95.4% src/vendor/github.com/xelabs/go-mysqlstack/sqlparser/sql.go 69.6%
docs: adjust format to make more clear radondb#693
2b1f5ad
sqlparser: move lock and algorithm option to ast_funcs.go radondb#693
e767925
c4de3c0
Merge pull request #697 from hustjieke/feature_complete_drop_index_op…
4eb64ff
…tion_#693 sqlparser: add drop index "lock | algorithm option" #693
hustjieke
No branches or pull requests
In 8.0, the drop index syntax:
radon now support:
radon should add options after stmt.
The text was updated successfully, but these errors were encountered: