wudidapaopao commented on PR #25207: URL: https://github.com/apache/datafusion/pull/25207#issuecomment-5644856325
Updated the TPC-H q16 plan. The filter changed from ``` p_brand != 'Brand#45' AND p_size IN (...) AND p_type NOT LIKE 'MEDIUM POLISHED%' ``` to ``` p_size IN (...) AND p_brand != 'Brand#45' AND p_type NOT LIKE 'MEDIUM POLISHED%' ``` `simplify_predicates` now groups `NOT EQUAL` by column, and grouped predicates are emitted after the ungrouped ones, so `p_brand != 'Brand#45'` no longer comes first. The predicates themselves are unchanged. -- 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]
