aharpervc commented on code in PR #1808: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1808#discussion_r2047577310
########## src/parser/mod.rs: ########## @@ -580,10 +580,12 @@ impl<'a> Parser<'a> { // `BEGIN` is a nonstandard but common alias for the // standard `START TRANSACTION` statement. It is supported // by at least PostgreSQL and MySQL. + // `BEGIN` is also used for multi-statement blocks in SQL Server Keyword::BEGIN => self.parse_begin(), // `END` is a nonstandard but common alias for the // standard `COMMIT TRANSACTION` statement. It is supported // by PostgreSQL. + // `END` is also used for multi-statement blocks in SQL Server Review Comment: Done 👍 -- 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