mvzink commented on code in PR #1762: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1762#discussion_r1989712091
########## src/parser/mod.rs: ########## @@ -8002,6 +8002,11 @@ impl<'a> Parser<'a> { && dialect_of!(self is MySqlDialect | GenericDialect) { AlterTableOperation::DropPrimaryKey + } else if self.parse_keywords(&[Keyword::FOREIGN, Keyword::KEY]) + && dialect_of!(self is MySqlDialect | GenericDialect) Review Comment: Fine with me; I'll remove both checks. -- 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