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

   ### Backend
   
   CH (ClickHouse)
   
   ### Bug description
   
   dataset: tpch-sf100
   sql:
   ```
   SELECT
       l_orderkey,
       sum(l_extendedprice * (1 - l_discount)) AS revenue,
       o_orderdate,
       o_shippriority
   FROM
       customer,
       orders,
       lineitem
   WHERE
       c_mktsegment = 'BUILDING'
       AND c_custkey = o_custkey
       AND l_orderkey = o_orderkey
       AND o_orderdate < date'1995-03-15'
       AND l_shipdate > date'1995-03-15'
   GROUP BY
       l_orderkey,
       o_orderdate,
       o_shippriority
   ORDER BY
       revenue DESC,
       o_orderdate
   LIMIT 10;
   ```
   spark job detail:
   
   
![image](https://github.com/user-attachments/assets/a525a46c-44f6-48c5-9129-774cdd801e0d)
   
![image](https://github.com/user-attachments/assets/b3ec6703-8f86-459e-a0b4-752ab588cb5e)
   
   
   
   
   ### Spark version
   
   None
   
   ### Spark configurations
   
   _No response_
   
   ### System information
   
   _No response_
   
   ### Relevant logs
   
   _No response_


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