Read ORC table failed
- Dominant language
- Scala
- Stars
- 1.6k
- Forks
- 657
- Avg merge
- 2d 14h
- Merged PRs (30d)
- 80
Description
**Describe the bug**
Hi, i read an orc table with spark3.2.2 and gluten failed, the log is like below


And i execute `velox_example_scan_orc` which is one of velox examples, read orc files successfully. `velox_example_scan_orc` in OAP/velox also does successfully.
**To Reproduce**
```
create table if not exists test(
id bigint,
name string,
score int
) using orc;
insert into test values(1, "tom", 80), (2, "jerry", 80), (3, "jay", 80), (4, null, 90);
select * from test;
```
**Expected behavior**
**Additional context**
Contributor guide
Assessment
This issue has not been assessed yet.