You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Vikram Dixit K (JIRA)" <ji...@apache.org> on 2016/05/18 22:43:12 UTC

[jira] [Updated] (HIVE-13191) DummyTable map joins mix up columns between tables

     [ https://issues.apache.org/jira/browse/HIVE-13191?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vikram Dixit K updated HIVE-13191:
----------------------------------
    Attachment: tez.q

Along with this addition

{code}
diff --git a/itests/src/test/resources/testconfiguration.properties b/itests/src/test/resources/testconfiguration.properties
index c891d40..a499b0a 100644
--- a/itests/src/test/resources/testconfiguration.properties
+++ b/itests/src/test/resources/testconfiguration.properties
@@ -70,6 +70,7 @@ disabled.query.files=ql_rewrite_gbtoidx.q,\
   smb_mapjoin_8.q

 minitez.query.files.shared=acid_globallimit.q,\
+  tez.q,\
   deleteAnalyze.q,\
   empty_join.q,\
   alter_merge_2_orc.q,\
{code}

> DummyTable map joins mix up columns between tables
> --------------------------------------------------
>
>                 Key: HIVE-13191
>                 URL: https://issues.apache.org/jira/browse/HIVE-13191
>             Project: Hive
>          Issue Type: Bug
>    Affects Versions: 2.0.0, 2.1.0
>            Reporter: Gopal V
>            Assignee: Vikram Dixit K
>         Attachments: tez.q
>
>
> {code}
> SELECT
>   a.key,
>   a.a_one,
>   b.b_one,
>   a.a_zero,
>   b.b_zero
> FROM
> (
>     SELECT
>       11 key,
>       0 confuse_you,
>       1 a_one,
>       0 a_zero
> ) a
> LEFT JOIN
> (
>     SELECT
>       11 key,
>       0 confuse_you,
>       1 b_one,
>       0 b_zero
> ) b
> ON a.key = b.key
> ;
> 11      1       0       0       1
> {code}
> This should be 11, 1, 1, 0, 0 instead. 
> Disabling map-joins & using shuffle-joins returns the right result.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)