beliefer commented on PR #10697:
URL:
https://github.com/apache/incubator-gluten/pull/10697#issuecomment-3479859535
@kevinwilfong I encountered the issue too. I picked up this PR to my Gluten.
But the problem still exists.
```
CREATE TABLE default.test_orc_table_hive_gluten
(
id int,
name string
)
PARTITIONED BY (dt string)
STORED AS ORC;
insert into test_orc_table_hive_gluten partition(dt='20240728') values (1,
'a'),(2,'b');
select * from test_orc_table_hive_gluten where dt = '20240728';
```
The output show below.
```
NULL NULL 20240728
NULL NULL 20240728
```
I set these configs show below.
```
set spark.gluten.sql.columnar.backend.velox.orcUseColumnNames=false;
set spark.gluten.sql.complexType.scan.fallback.enabled=false;
```
But nothing helped.
Did I miss something?
--
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]