[jira] [Commented] (HIVE-4149) wrong results big outer joins with array of ints

2013-04-04 Thread Hudson (JIRA)

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

Hudson commented on HIVE-4149:
--

Integrated in Hive-trunk-hadoop2 #138 (See 
[https://builds.apache.org/job/Hive-trunk-hadoop2/138/])
HIVE-4149 wrong results big outer joins with array of ints
(Navis via namit) (Revision 1461959)

 Result = FAILURE
namit : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1461959
Files : 
* /hive/trunk/data/files/tiny_a.txt
* /hive/trunk/data/files/tiny_b.txt
* /hive/trunk/ql/src/test/queries/clientpositive/join_array.q
* /hive/trunk/ql/src/test/results/clientpositive/join_array.q.out
* /hive/trunk/serde/src/java/org/apache/hadoop/hive/serde2/lazy/LazyArray.java
* 
/hive/trunk/serde/src/test/org/apache/hadoop/hive/serde2/lazy/TestLazyArrayMapStruct.java


> wrong results big outer joins with array of ints
> 
>
> Key: HIVE-4149
> URL: https://issues.apache.org/jira/browse/HIVE-4149
> Project: Hive
>  Issue Type: Bug
>  Components: Query Processor
>Reporter: Namit Jain
>Assignee: Navis
>Priority: Critical
> Fix For: 0.11.0
>
> Attachments: hive.4149.1.patch, HIVE-4149.D9747.1.patch, 
> HIVE-4149.D9747.2.patch
>
>
> Consider the following query:
> create table tinyA(a bigint, b bigint) stored as textfile;
> create table tinyB(a bigint, bList array) stored as textfile;
> load data local inpath '../data/files/tiny_a' into table tinyA;
> load data local inpath '../data/files/tiny_b' into table tinyB;
> select * from tinyA;
> select * from tinyB;
> select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = 
> tinyA.a;
> The results are wrong

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HIVE-4149) wrong results big outer joins with array of ints

2013-03-29 Thread Hudson (JIRA)

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

Hudson commented on HIVE-4149:
--

Integrated in Hive-trunk-h0.21 #2035 (See 
[https://builds.apache.org/job/Hive-trunk-h0.21/2035/])
HIVE-4149 wrong results big outer joins with array of ints
(Navis via namit) (Revision 1461959)

 Result = FAILURE
namit : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1461959
Files : 
* /hive/trunk/data/files/tiny_a.txt
* /hive/trunk/data/files/tiny_b.txt
* /hive/trunk/ql/src/test/queries/clientpositive/join_array.q
* /hive/trunk/ql/src/test/results/clientpositive/join_array.q.out
* /hive/trunk/serde/src/java/org/apache/hadoop/hive/serde2/lazy/LazyArray.java
* 
/hive/trunk/serde/src/test/org/apache/hadoop/hive/serde2/lazy/TestLazyArrayMapStruct.java


> wrong results big outer joins with array of ints
> 
>
> Key: HIVE-4149
> URL: https://issues.apache.org/jira/browse/HIVE-4149
> Project: Hive
>  Issue Type: Bug
>  Components: Query Processor
>Reporter: Namit Jain
>Assignee: Navis
>Priority: Critical
> Fix For: 0.11.0
>
> Attachments: hive.4149.1.patch, HIVE-4149.D9747.1.patch, 
> HIVE-4149.D9747.2.patch
>
>
> Consider the following query:
> create table tinyA(a bigint, b bigint) stored as textfile;
> create table tinyB(a bigint, bList array) stored as textfile;
> load data local inpath '../data/files/tiny_a' into table tinyA;
> load data local inpath '../data/files/tiny_b' into table tinyB;
> select * from tinyA;
> select * from tinyB;
> select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = 
> tinyA.a;
> The results are wrong

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HIVE-4149) wrong results big outer joins with array of ints

2013-03-27 Thread Phabricator (JIRA)

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

Phabricator commented on HIVE-4149:
---

njain has accepted the revision "HIVE-4149 [jira] wrong results big outer joins 
with array of ints".

REVISION DETAIL
  https://reviews.facebook.net/D9747

BRANCH
  HIVE-4149

ARCANIST PROJECT
  hive

To: JIRA, njain, navis


> wrong results big outer joins with array of ints
> 
>
> Key: HIVE-4149
> URL: https://issues.apache.org/jira/browse/HIVE-4149
> Project: Hive
>  Issue Type: Bug
>  Components: Query Processor
>Reporter: Namit Jain
>Assignee: Navis
>Priority: Critical
> Attachments: hive.4149.1.patch, HIVE-4149.D9747.1.patch, 
> HIVE-4149.D9747.2.patch
>
>
> Consider the following query:
> create table tinyA(a bigint, b bigint) stored as textfile;
> create table tinyB(a bigint, bList array) stored as textfile;
> load data local inpath '../data/files/tiny_a' into table tinyA;
> load data local inpath '../data/files/tiny_b' into table tinyB;
> select * from tinyA;
> select * from tinyB;
> select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = 
> tinyA.a;
> The results are wrong

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HIVE-4149) wrong results big outer joins with array of ints

2013-03-27 Thread Namit Jain (JIRA)

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

Namit Jain commented on HIVE-4149:
--

+1

> wrong results big outer joins with array of ints
> 
>
> Key: HIVE-4149
> URL: https://issues.apache.org/jira/browse/HIVE-4149
> Project: Hive
>  Issue Type: Bug
>  Components: Query Processor
>Reporter: Namit Jain
>Assignee: Navis
>Priority: Critical
> Attachments: hive.4149.1.patch, HIVE-4149.D9747.1.patch, 
> HIVE-4149.D9747.2.patch
>
>
> Consider the following query:
> create table tinyA(a bigint, b bigint) stored as textfile;
> create table tinyB(a bigint, bList array) stored as textfile;
> load data local inpath '../data/files/tiny_a' into table tinyA;
> load data local inpath '../data/files/tiny_b' into table tinyB;
> select * from tinyA;
> select * from tinyB;
> select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = 
> tinyA.a;
> The results are wrong

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HIVE-4149) wrong results big outer joins with array of ints

2013-03-27 Thread Navis (JIRA)

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

Navis commented on HIVE-4149:
-

Ah, sure.

> wrong results big outer joins with array of ints
> 
>
> Key: HIVE-4149
> URL: https://issues.apache.org/jira/browse/HIVE-4149
> Project: Hive
>  Issue Type: Bug
>  Components: Query Processor
>Reporter: Namit Jain
>Assignee: Navis
>Priority: Critical
> Attachments: hive.4149.1.patch, HIVE-4149.D9747.1.patch
>
>
> Consider the following query:
> create table tinyA(a bigint, b bigint) stored as textfile;
> create table tinyB(a bigint, bList array) stored as textfile;
> load data local inpath '../data/files/tiny_a' into table tinyA;
> load data local inpath '../data/files/tiny_b' into table tinyB;
> select * from tinyA;
> select * from tinyB;
> select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = 
> tinyA.a;
> The results are wrong

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HIVE-4149) wrong results big outer joins with array of ints

2013-03-11 Thread Namit Jain (JIRA)

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

Namit Jain commented on HIVE-4149:
--

The patch with the test is attached

> wrong results big outer joins with array of ints
> 
>
> Key: HIVE-4149
> URL: https://issues.apache.org/jira/browse/HIVE-4149
> Project: Hive
>  Issue Type: Bug
>  Components: Query Processor
>Reporter: Namit Jain
> Attachments: hive.4149.1.patch
>
>
> Consider the following query:
> create table tinyA(a bigint, b bigint) stored as textfile;
> create table tinyB(a bigint, bList array) stored as textfile;
> load data local inpath '../data/files/tiny_a' into table tinyA;
> load data local inpath '../data/files/tiny_b' into table tinyB;
> select * from tinyA;
> select * from tinyB;
> select tinyB.a, tinyB.bList from tinyB full outer join tinyA on tinyB.a = 
> tinyA.a;
> The results are wrong

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira