aprimadi opened a new pull request, #6270:
URL: https://github.com/apache/arrow-datafusion/pull/6270

   # Which issue does this PR close?
   
   Closes #6205.
   
   # Rationale for this change
   
   Due to sqlparser lack of semantic, we need to rewrite the AST in datafusion.
   
   For example, this is valid in sqlparser:
   
   ```
   SELECT INTERVAL `1 month` + `1 month`
   ```
   
   This is also valid:
   
   ```
   SELECT INTERVAL '1 month' + '2012-01-01'::date;
   ```
   
   Both generates Interval expression with Binary Op +.
   
   # What changes are included in this PR?
   
   TODO
   
   # Are these changes tested?
   
   Yes
   
   # Are there any user-facing changes?
   
   No


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