LucaCappelletti94 commented on code in PR #1830:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1830#discussion_r2072419395


##########
src/ast/mod.rs:
##########
@@ -3968,6 +3968,19 @@ pub enum Statement {
         owned_by: Option<ObjectName>,
     },
     /// ```sql
+    /// CREATE DOMAIN name [ AS ] data_type
+    ///         [ COLLATE collation ]
+    ///         [ DEFAULT expression ]
+    ///         [ domain_constraint [ ... ] ]
+    ///
+    ///     where domain_constraint is:
+    ///
+    ///     [ CONSTRAINT constraint_name ]
+    ///     { NOT NULL | NULL | CHECK (expression) }
+    /// ```

Review Comment:
   Updated



-- 
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

Reply via email to