marin-ma commented on code in PR #11147:
URL:
https://github.com/apache/incubator-gluten/pull/11147#discussion_r2549954729
##########
backends-velox/src/test/scala/org/apache/gluten/execution/MiscOperatorSuite.scala:
##########
@@ -177,10 +176,10 @@ class MiscOperatorSuite extends
VeloxWholeStageTransformerSuite with AdaptiveSpa
}
// TODO: fix on spark-4.0
- testWithMaxSparkVersion("and pushdown", "3.5") {
+ test("and pushdown") {
val df = runQueryAndCompare(
"select l_orderkey from lineitem where l_orderkey > 2 " +
- "and l_orderkey = 1") { _ => }
+ "and l_orderkey < 2") { _ => }
Review Comment:
This change is due to the optimizer change in spark 4.0. The filter
condition in the original SQL is optimzed out.
--
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]