[ https://issues.apache.org/jira/browse/HIVE-7441?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14086612#comment-14086612 ]
Hive QA commented on HIVE-7441: ------------------------------- {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/12659786/HIVE-7441.patch {color:red}ERROR:{color} -1 due to 4 failed/errored test(s), 5850 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_alter_merge_3 org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_ql_rewrite_gbtoidx org.apache.hadoop.hive.ql.TestDDLWithRemoteMetastoreSecondNamenode.testCreateTableWithIndexAndPartitionsNonDefaultNameNode org.apache.hive.hcatalog.pig.TestOrcHCatLoader.testReadDataPrimitiveTypes {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/176/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/176/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-176/ 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: 4 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12659786 > Custom partition scheme gets rewritten with hive scheme upon concatenate > ------------------------------------------------------------------------ > > Key: HIVE-7441 > URL: https://issues.apache.org/jira/browse/HIVE-7441 > Project: Hive > Issue Type: Bug > Components: CLI > Affects Versions: 0.10.0, 0.11.0, 0.12.0 > Environment: CDH4.5 and CDH5.0 > Reporter: Johndee Burks > Assignee: Chaoyu Tang > Priority: Minor > Fix For: 0.14.0 > > Attachments: HIVE-7441.patch > > > If I take a given data directories. The directories contain a data file that > is rc format and only contains one character "1". > {code} > /j1/part1 > /j1/part2 > {code} > Create the table over the directories using the following command: > {code} > create table j1 (a int) partitioned by (b string) stored as rcfile location > '/j1' ; > {code} > I add these directories to a table for example j1 using the following > commands: > {code} > alter table j1 add partition (b = 'part1') location '/j1/part1'; > alter table j1 add partition (b = 'part2') location '/j1/part2'; > {code} > I then do the following command to the first partition: > {code} > alter table j1 partition (b = 'part1') concatenate; > {code} > Hive changes the partition location from on hdfs > {code} > /j1/part1 > {code} > to > {code} > /j1/b=part1 > {code} > However it does not update the partition location in the metastore and > partition is then lost to the table. It is hard to find this out until you > start querying your data and notice there is missing data. The table even > still shows the partition when you do "show partitions". -- This message was sent by Atlassian JIRA (v6.2#6252)