ramnes commented on code in PR #2015:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/2015#discussion_r2313932290
##########
src/parser/alter.rs:
##########
@@ -39,6 +39,15 @@ impl Parser<'_> {
))
}
+ pub fn parse_alter_user(&mut self) -> Result<Statement, ParserError> {
+ if dialect_of!(self is PostgreSqlDialect) {
+ return self.parse_pg_alter_user();
+ }
Review Comment:
Alright!
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]