aharpervc commented on code in PR #1809: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1809#discussion_r2045640591
########## src/parser/mod.rs: ########## @@ -15058,6 +15069,57 @@ impl<'a> Parser<'a> { } } + /// Parse [Statement::Go] + fn parse_go(&mut self) -> Result<Statement, ParserError> { + // previous token should be a newline (skipping non-newline whitespace) + // see also, `previous_token` + let mut look_back_count = 2; + loop { Review Comment: This can maybe be simplified. Also, needs a test when `go` starts a file but followed by other statements -- 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