weixiuli commented on code in PR #9026:
URL: https://github.com/apache/incubator-gluten/pull/9026#discussion_r2049950990
##########
backends-velox/src/test/scala/org/apache/gluten/expression/UDFPartialProjectSuite.scala:
##########
@@ -120,7 +121,7 @@ abstract class UDFPartialProjectSuite extends
WholeStageTransformerSuite {
}
}
- test("test function no argument") {
+ ignore("test function no argument") {
Review Comment:
The parent of the project in this test is not a GlutenColumnarOp,so we
ignore it.
before this PR
```
== Physical Plan ==
CollectLimit 100
+- VeloxColumnarToRow
+- ^(2) ProjectExecTransformer [no_argument()#37, l_orderkey#0L]
+- ^(2) InputIteratorTransformer[l_orderkey#0L, no_argument()#37]
+- ColumnarPartialProject [no_argument() AS no_argument()#37,
l_orderkey#0L] PartialProject List(no_argument() AS no_argument()#37)
+- ^(1) BatchScanTransformer parquet
file:/root/git/gluten-test/backends-velox/target/scala-2.12/test-classes/tpch-data-parquet/lineitem[l_orderkey#0L]
ParquetScan DataFilters: [], Format: parquet, Location: InMemoryFileIndex(1
paths)[file:/root/git/gluten-test/backends-velox/target/scala-2.12/...,
PartitionFilters: [], PushedAggregation: [], PushedFilters: [], PushedGroupBy:
[], ReadSchema: struct<l_orderkey:bigint> RuntimeFilters: [] NativeFilters: []
```
After this PR
```
== Physical Plan ==
CollectLimit 100
+- *(1) Project [no_argument() AS no_argument()#37, l_orderkey#0L]
+- VeloxColumnarToRow
+- ^(1) BatchScanTransformer parquet
file:/root/git/gluten-test/backends-velox/target/scala-2.12/test-classes/tpch-data-parquet/lineitem[l_orderkey#0L]
ParquetScan DataFilters: [], Format: parquet, Location: InMemoryFileIndex(1
paths)[file:/root/git/gluten-test/backends-velox/target/scala-2.12/...,
PartitionFilters: [], PushedAggregation: [], PushedFilters: [], PushedGroupBy:
[], ReadSchema: struct<l_orderkey:bigint> RuntimeFilters: [] NativeFilters: []
```
--
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]