exmy opened a new issue, #6588:
URL: https://github.com/apache/incubator-gluten/issues/6588
### Backend
CH (ClickHouse)
### Bug description
```sql
create table tbl (
a int,
b map<string, string>,
c struct<d:string, e:string>
) partitioned by (day string)
stored as orc;
insert overwrite tbl partition (day)
select id as a,
str_to_map(concat('t1:','a','&t2:','b'),'&',':'),
struct('1', null) as c,
'2024-01-08' as day
from range(1);
select * from tbl;
```
expected result:
```
0 {"t1":"a","t2":"b"} {"d":"1","e":null} 2024-01-08
```
gluten result:
```
0 {"t1":"a","t2":"b"} {"d":null,"e":null} 2024-01-08
```
### Spark version
None
### Spark configurations
_No response_
### System information
_No response_
### Relevant logs
_No response_
--
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]