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