[ 
https://issues.apache.org/jira/browse/HIVE-22210?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16931924#comment-16931924
 ] 

Hive QA commented on HIVE-22210:
--------------------------------



Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12980501/HIVE-22210.02.patch

{color:green}SUCCESS:{color} +1 due to 1 test(s) being added or modified.

{color:green}SUCCESS:{color} +1 due to 16761 tests passed

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/18624/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/18624/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-18624/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12980501 - PreCommit-HIVE-Build

> Vectorization may reuse computation output columns involved in filtering
> ------------------------------------------------------------------------
>
>                 Key: HIVE-22210
>                 URL: https://issues.apache.org/jira/browse/HIVE-22210
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Zoltan Haindrich
>            Assignee: Zoltan Haindrich
>            Priority: Major
>         Attachments: HIVE-22210.01.patch, HIVE-22210.02.patch
>
>
> running the following test with TestMiniLlapLocalCliDriver leads to an 
> unexpected results; the coalesce calculated inside the subquery has a value 
> of 1 instead of the correct(922) value.
> {code}
> drop table if exists  u_table_4;
> create table u_table_4(smallint_col_22 smallint, int_col_5 int);
> insert into u_table_4 values(238,922);
> drop table u_table_7;
> create table u_table_7 ( bigint_col_3 bigint, int_col_10 int);
> insert into u_table_7 values (571,198);
> drop table u_table_19;
> create table u_table_19 (bigint_col_18 bigint ,int_col_19 int, STRING_COL_7 
> string);
> insert into u_table_19 values (922,5,'500');
> set hive.mapjoin.full.outer=true;
> set hive.auto.convert.join=true;
> set hive.query.results.cache.enabled=false;
> set hive.merge.nway.joins=true;
> set hive.vectorized.execution.enabled=true;
> --explain analyze
>  SELECT        
>         a5.int_col,
>   922 as expected,
>   COALESCE(a5.int_col, a5.aa) as expected2,
>   a5.int_col_3 as reality
> FROM            u_table_19 a1 
> FULL OUTER JOIN 
>                 ( 
>                        SELECT a2.int_col_5 AS int_col, 
>                                                   a2.smallint_col_22 as aa,
>                               COALESCE(a2.int_col_5, a2.smallint_col_22) AS 
> int_col_3 
>                        FROM   u_table_4 a2
>                                 ) a5 
> ON              ( 
>                                 a1.bigint_col_18) = (a5.int_col_3) 
> INNER JOIN 
>                 ( 
>                          SELECT   a3.bigint_col_3                             
>                                                                   AS int_col,
>                                   Cast (COALESCE(a3.bigint_col_3, 
> a3.bigint_col_3, a3.int_col_10) AS BIGINT) * Cast (a3.bigint_col_3 AS BIGINT) 
> AS int_col_3
>                          FROM     u_table_7 a3 
>                          WHERE    bigint_col_3=571 
>                 ) a4
> ON              (a1.int_col_19=5) 
> OR              ((a5.int_col_3) IN (a4.int_col, 10)) 
> where
>   a1.STRING_COL_7='500'
> ORDER BY        int_col DESC nulls last limit 100
> ;
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to