aharpervc commented on code in PR #1809: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1809#discussion_r2052450841
########## src/parser/mod.rs: ########## @@ -15064,6 +15117,38 @@ impl<'a> Parser<'a> { })) } + /// Parse [Statement::Go] + fn parse_go(&mut self) -> Result<Statement, ParserError> { + self.expect_previously_only_whitespace_until_newline()?; + + let count = loop { + // using this peek function because we want to halt this statement parsing upon newline Review Comment: Yes, I can add that comment. However there is also test coverage for this behavior, so it should be protected from future refactoring -- 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