loneylee opened a new issue, #5405:
URL: https://github.com/apache/incubator-gluten/issues/5405

   ### Description
   
   If users query data through BI tools.
    The BI tools may generate SQL similar to
    ```
   to_date(
      from_unixtime(
        unix_timestamp(dateType, 'yyyyMMdd')
      )
    )
   ```
    to convert string strings to dates.
    Under ch backend, the StringType can be directly converted into DateType,
        and the functions `from_unixtime` and `unix_timestamp` can be optimized 
here.
   Optimized result is 
   ```
   to_date(dateType)
   ```


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

Reply via email to