vimko commented on code in PR #1865: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1865#discussion_r2134494593
########## tests/sqlparser_common.rs: ########## @@ -9132,7 +9132,9 @@ fn test_create_index_with_with_clause() { #[test] fn parse_drop_index() { let sql = "DROP INDEX idx_a"; - match verified_stmt(sql) { + // MySql dialect doesn't support `DROP INDEX idx_a`,you need to specify a specific table, please refer: + // [MySql](https://dev.mysql.com/doc/refman/8.4/en/drop-index.html) + match all_dialects_except(|d| d.is::<MySqlDialect>()).verified_stmt(sql) { Review Comment: That's right, I didn't think it through well. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org