Matt McCline created HIVE-8587:
----------------------------------
Summary: Vectorized Extract operator needs to update the
Vectorization Context column map
Key: HIVE-8587
URL: https://issues.apache.org/jira/browse/HIVE-8587
Project: Hive
Issue Type: Bug
Components: Tez, Vectorization
Affects Versions: 0.14.0
Reporter: Matt McCline
Assignee: Matt McCline
Priority: Critical
Fix For: 0.14.0
Fails on Tez:
{noformat}
hive> SET hive.vectorized.execution.enabled=true;
hive> set hive.support.concurrency=true;
hive> set hive.enforce.bucketing=true;
hive> CREATE TABLE non_orc_table(a INT, b STRING) CLUSTERED BY(a) INTO 2
BUCKETS STORED AS sequencefile;
insert into table non_orc_table values(1, 'one'),(1, 'one'), (2, 'two'),(3,
'three'); select a, b from non_orc_table order by a;
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)