[
https://issues.apache.org/jira/browse/HIVE-21724?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Daniel Voros updated HIVE-21724:
--------------------------------
Description:
The logic during vectorized execution that keeps track of how deep we are in
the nested structure doesn't work for ARRAYs and STRUCTs embedded inside maps.
Repro steps (with hive.vectorized.execution.enabled=true):
{code}
CREATE TABLE srctable(a map<int,array<int>>) STORED AS TEXTFILE;
create table desttable(c1 map<int,array<int>>);
insert into srctable values (map(1, array(1, 2, 3)));
insert into desttable select a from srctable;
select * from desttable;
{code}
Will produce:
{code}
{1:[null]}
{code}
was:The logic during vectorized execution that keeps track of how deep we are
in the nested structure doesn't work for ARRAYs and STRUCTs embedded inside
maps.
> Nested ARRAY and STRUCT inside MAP don't work with LazySimpleDeserializeRead
> ----------------------------------------------------------------------------
>
> Key: HIVE-21724
> URL: https://issues.apache.org/jira/browse/HIVE-21724
> Project: Hive
> Issue Type: Bug
> Components: Serializers/Deserializers
> Affects Versions: 3.1.1
> Reporter: Daniel Voros
> Assignee: Daniel Voros
> Priority: Major
>
> The logic during vectorized execution that keeps track of how deep we are in
> the nested structure doesn't work for ARRAYs and STRUCTs embedded inside maps.
> Repro steps (with hive.vectorized.execution.enabled=true):
> {code}
> CREATE TABLE srctable(a map<int,array<int>>) STORED AS TEXTFILE;
> create table desttable(c1 map<int,array<int>>);
> insert into srctable values (map(1, array(1, 2, 3)));
> insert into desttable select a from srctable;
> select * from desttable;
> {code}
> Will produce:
> {code}
> {1:[null]}
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)