iffyio commented on code in PR #1755:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1755#discussion_r1995819665


##########
src/parser/mod.rs:
##########
@@ -6926,14 +6927,16 @@ impl<'a> Parser<'a> {
         let comment = if self.parse_keyword(Keyword::COMMENT) {
             let has_eq = self.consume_token(&Token::Eq);
             let next_token = self.next_token();
-            match next_token.token {
-                Token::SingleQuotedString(str) => Some(if has_eq {
-                    CommentDef::WithEq(str)
-                } else {
-                    CommentDef::WithoutEq(str)
-                }),
+            let comment = match next_token.token {
+                Token::SingleQuotedString(str) => str,
+                Token::DollarQuotedString(str) => str.value,
                 _ => self.expected("comment", next_token)?,
-            }
+            };

Review Comment:
   can we move this part to be reusable? something like
   ```rust
   fn parse_comment_value() -> Result<String> {
             let value = match next_token.token {
                   Token::SingleQuotedString(str) => str,
                   Token::DollarQuotedString(str) => str.value,
                   _ => self.expected("comment", next_token)?,
               };
            Ok(value)
   }
   ```
   and then to call the function from both places



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