ayman-sigma commented on code in PR #1539:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1539#discussion_r1852686133
##########
src/parser/mod.rs:
##########
@@ -12579,7 +12599,9 @@ impl<'a> Parser<'a> {
.parse_one_of_keywords(&[Keyword::FROM, Keyword::IN])
.is_some()
{
- parent_name.0.insert(0, self.parse_identifier(false)?);
+ parent_name
+ .0
+ .insert(0,
self.parse_identifier(false)?.to_object_name_part());
Review Comment:
You are right. I actually was planning to remove it but forgot. I thought I
would use it more
--
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]