File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -189,8 +189,6 @@ pub enum AlterTableOperation {
189
189
} ,
190
190
/// `DROP INDEX <index_name>`
191
191
///
192
- /// Note: this is a [MySQL]-specific operation.
193
- ///
194
192
/// [MySQL]: https://dev.mysql.com/doc/refman/8.4/en/alter-table.html
195
193
DropIndex {
196
194
name : Ident ,
Original file line number Diff line number Diff line change @@ -9132,9 +9132,7 @@ fn test_create_index_with_with_clause() {
9132
9132
#[test]
9133
9133
fn parse_drop_index() {
9134
9134
let sql = "DROP INDEX idx_a";
9135
- // MySql dialect doesn't support `DROP INDEX idx_a`,you need to specify a specific table, please refer:
9136
- // [MySql](https://dev.mysql.com/doc/refman/8.4/en/drop-index.html)
9137
- match all_dialects_except(|d| d.is::<MySqlDialect>()).verified_stmt(sql) {
9135
+ match verified_stmt(sql) {
9138
9136
Statement::Drop {
9139
9137
names, object_type, ..
9140
9138
} => {
You can’t perform that action at this time.
0 commit comments