MohamedAbdeen21 commented on code in PR #9599:
URL: https://github.com/apache/arrow-datafusion/pull/9599#discussion_r1544613852


##########
datafusion/sql/src/parser.rs:
##########
@@ -679,7 +679,25 @@ impl<'a> DFParser<'a> {
                     Keyword::PARTITIONED => {
                         self.parser.expect_keyword(Keyword::BY)?;
                         ensure_not_set(&builder.table_partition_cols, 
"PARTITIONED BY")?;
-                        builder.table_partition_cols = 
Some(self.parse_partitions()?);
+                        let peeked = self.parser.peek_nth_token(2);
+                        if peeked == Token::Comma || peeked == Token::RParen {

Review Comment:
   That looks promising. I'll open a follow up PR if it works out. Thanks for 
pointing it out.
   
   Edit: misread the docs, we need a version of `consume_tokens` that returns 
true without actually consuming the tokens, because we need to parse the tokens 
later. 
   
   Also, would be perfect if it can match a pattern to catch mixing syntax in 
the clause.



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

Reply via email to