ayman-sigma commented on code in PR #1540:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1540#discussion_r1851054150


##########
src/parser/mod.rs:
##########
@@ -8349,6 +8349,13 @@ impl<'a> Parser<'a> {
     pub fn parse_object_name(&mut self, in_table_clause: bool) -> 
Result<ObjectName, ParserError> {
         let mut idents = vec![];
         loop {
+            if self.dialect.supports_object_name_double_dot_notation()
+                && !idents.is_empty()

Review Comment:
   I'm debating if I should force it only for missing schema. Which means only 
accepts `x..y` and rejects stuff like `x.y..z`. Forcing this seems like a 
semantic validation that we are trying to avoid.



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