simonvandel commented on code in PR #1879: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1879#discussion_r2173771626
########## src/parser/mod.rs: ########## @@ -9947,6 +9947,51 @@ impl<'a> Parser<'a> { Ok(IdentWithAlias { ident, alias }) } + /// Parse `identifier [AS] identifier` where the AS keyword is optional + pub fn parse_identifier_with_optional_alias(&mut self) -> Result<IdentWithAlias, ParserError> { Review Comment: Thanks, https://github.com/apache/datafusion-sqlparser-rs/pull/1879/commits/15e4e32beef24cc4bbe581dfe1a918f101cb6f8e -- 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