[
https://issues.apache.org/jira/browse/HIVE-18157?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16268121#comment-16268121
]
Deepak Jaiswal edited comment on HIVE-18157 at 11/28/17 5:01 AM:
-----------------------------------------------------------------
I dont think so,
This is the JIRA which caused this,
https://issues.apache.org/jira/browse/HIVE-16557
I verified that it was never committed to branch-2
was (Author: djaiswal):
I dont think so,
This is the JIRA which caused this,
https://issues.apache.org/jira/browse/HIVE-16557
> Vectorization : Insert in bucketed table is broken with vectorization
> ---------------------------------------------------------------------
>
> Key: HIVE-18157
> URL: https://issues.apache.org/jira/browse/HIVE-18157
> Project: Hive
> Issue Type: Bug
> Reporter: Deepak Jaiswal
> Assignee: Deepak Jaiswal
> Attachments: HIVE-18157.1.patch
>
>
> create temporary table foo (x int) clustered by (x) into 4 buckets;
> insert overwrite table foo values(1),(2),(3),(4),(9);
> select *, regexp_extract(INPUT__FILE__NAME, '.*/(.*)', 1) from foo;
> OK
> 9 000000_0
> 4 000000_0
> 3 000000_0
> 2 000000_0
> 1 000000_0
> set hive.vectorized.execution.enabled=false;
> insert overwrite table foo values(1),(2),(3),(4),(9);
> select *, regexp_extract(INPUT__FILE__NAME, '.*/(.*)', 1) from foo;
> OK
> 4 000000_0
> 9 000001_0
> 1 000001_0
> 2 000002_0
> 3 000003_0
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)