aharpervc commented on code in PR #1808: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1808#discussion_r2047765609
########## src/parser/mod.rs: ########## @@ -15017,6 +15075,13 @@ impl<'a> Parser<'a> { } } + fn parse_return(&mut self) -> Result<Statement, ParserError> { + let expr = self.parse_expr()?; Review Comment: I've added a test case for a bare `RETURN` to sqlparser_common.rs, although I'm unsure how useful it is. At least for SQL Server, a top level return _must_ be bare (eg, can't return anything). Therefore, the more useful tests are where return is inside a function body, trigger body, etc. And we have those tests in their respective branches. -- 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