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


##########
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:
   There was a test case that specifically test the invalid object name of 
`x.y..z`. So I updated it to support only missing schema in `x..y`. 



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

Reply via email to