LucaCappelletti94 commented on code in PR #1828: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1828#discussion_r2068085168
########## src/ast/mod.rs: ########## @@ -3319,6 +3319,18 @@ pub enum Statement { drop_behavior: Option<DropBehavior>, }, /// ```sql + /// DROP DOMAIN + /// ``` + /// See [PostgreSQL](https://www.postgresql.org/docs/current/sql-dropdomain.html) + /// + /// DROP DOMAIN [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ] + /// + DropDomain { + if_exists: bool, + name: ObjectName, + drop_behavior: Option<DropBehavior>, + }, Review Comment: Done in commit [10dab51](https://github.com/apache/datafusion-sqlparser-rs/pull/1828/commits/10dab5142da31e0fd0768318cc57b389ed6b1de2) -- 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