andygrove commented on PR #2492: URL: https://github.com/apache/datafusion-comet/pull/2492#issuecomment-3353738828
> I'm seeing a difference in the explain plan (but not the simplified plan) for tpc-ds q9 with Spark 3.5 > > ``` > expected:<...m#35, count#36, sum#[37, count#38] > but was:<...m#35, count#36, sum#[15, count#37] > ``` I cannot reproduce this issue locally :disappointed: The expected plan has: ``` (18) CometHashAggregate Input [5]: [count#34, sum#35, count#36, sum#37, count#38] Keys: [] Functions [3]: [count(1), avg(UnscaledValue(ss_ext_discount_amt#31)), avg(UnscaledValue(ss_net_paid#32))] ``` The actual plan has: ``` (18) CometHashAggregate Input [5]: [count#34, sum#35, count#36, sum#15, count#37] Keys: [] Functions [3]: [count(1), avg(UnscaledValue(ss_ext_discount_amt#31)), avg(UnscaledValue(ss_net_paid#32))] ``` -- 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]
