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

Johan Oskarsson commented on HIVE-189:
--------------------------------------

I'm starting to suspect that these are related to File.list ordering just like 
HIVE-90. I had a closer look at input3_limit.q. The important bits:
<snip>
LOAD DATA LOCAL INPATH '../data/files/kv1.txt' INTO TABLE T1;
LOAD DATA LOCAL INPATH '../data/files/kv2.txt' INTO TABLE T1;
<snip>
INSERT OVERWRITE TABLE T2 SELECT a.key, a.value from T1 a LIMIT 20;
<snip>

It seems that the insert select statement with a 20 limit is meant to select 
from the kv1.txt file, but on my system it picks the kv2.txt file first. Thus 
the final output will be incorrect. Could someone confirm that this differs 
from a run where it passes?

> Various TestCliDriver tests fail
> --------------------------------
>
>                 Key: HIVE-189
>                 URL: https://issues.apache.org/jira/browse/HIVE-189
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Testing Infrastructure
>            Reporter: Johan Oskarsson
>            Assignee: Ashish Thusoo
>            Priority: Blocker
>             Fix For: 0.2.0
>
>         Attachments: patch-189.txt, 
> TEST-org.apache.hadoop.hive.cli.TestCliDriver.txt
>
>
> On a fresh checkout of trunk a number of tests fail in 
> org.apache.hadoop.hive.cli.TestCliDriver:
> testCliDriver_sample5
> testCliDriver_input3_limit
> testCliDriver_udf5
> testCliDriver_sample3

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to