zhztheplayer commented on issue #10511:
URL: https://github.com/apache/gluten/issues/10511#issuecomment-4623425488
I ran a similar test with latest Gluten + Spark 3.5 / Delta 3.3 and it
passed:
```scala
withTable("delta_cm2") {
spark.sql(s"""
|create table delta_cm2 (id int, name string) using delta
|tblproperties ("delta.columnMapping.mode"= "name")
|""".stripMargin)
spark.sql(s"""
|insert into delta_cm2 values (1, "v1"), (2, "v2"), (3, "v3")
|""".stripMargin)
val df2 = runQueryAndCompare("select name from delta_cm2 where id > 2") {
_ => }
checkLengthAndPlan(df2, 1)
checkAnswer(df2, Row("v3") :: Nil)
}
```
--
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]