[
https://issues.apache.org/jira/browse/HIVE-9149?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14250825#comment-14250825
]
Hive QA commented on HIVE-9149:
-------------------------------
{color:red}Overall{color}: -1 at least one tests failed
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12687846/HIVE-9149.2.patch
{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 6714 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_optimize_nullscan
{noformat}
Test results:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/2116/testReport
Console output:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/2116/console
Test logs:
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-2116/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12687846 - PreCommit-HIVE-TRUNK-Build
> Add unit test to test implicit conversion during dynamic
> partitioning/distribute by
> -----------------------------------------------------------------------------------
>
> Key: HIVE-9149
> URL: https://issues.apache.org/jira/browse/HIVE-9149
> Project: Hive
> Issue Type: Bug
> Components: Tests
> Reporter: Jason Dere
> Assignee: Jason Dere
> Attachments: HIVE-9149.1.patch, HIVE-9149.2.patch
>
>
> This particular case was failing in Hive 0.13 because the string "key" column
> was not being converted to INT when written to the ORC file, resulting in a
> type cast error when reading data from the table.
> HIVE-8151 seems to have fixed this issue, but I would like to add a unit test
> to make sure we don't regress.
> {noformat}
> create table implicit_cast_during_insert (c1 int, c2 string)
> partitioned by (p1 string) stored as orc;
> set hive.exec.dynamic.partition.mode=nonstrict;
> insert overwrite table implicit_cast_during_insert partition (p1)
> select key, value, key key1 from (select * from src where key = 0) q
> distribute by key1 sort by key1;
> select * from implicit_cast_during_insert;
> drop table implicit_cast_during_insert;
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)