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

Hive QA commented on HIVE-23023:
--------------------------------



Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12996694/HIVE-23023.01.patch

{color:green}SUCCESS:{color} +1 due to 1 test(s) being added or modified.

{color:green}SUCCESS:{color} +1 due to 18101 tests passed

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/21112/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/21112/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-21112/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12996694 - PreCommit-HIVE-Build

> MR compaction ignores column schema evolution
> ---------------------------------------------
>
>                 Key: HIVE-23023
>                 URL: https://issues.apache.org/jira/browse/HIVE-23023
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Karen Coppage
>            Assignee: Karen Coppage
>            Priority: Major
>         Attachments: HIVE-23023.01.patch
>
>
> Repro:
> {code:java}
> create table compaction_error(i int)
>  partitioned by (`part1` string)
>  stored as orc
>  TBLPROPERTIES ('transactional'='true');
> insert into table compaction_error values (2, 'aa');
> ALTER TABLE compaction_error ADD COLUMNS (newcol string);
> update compaction_error set newcol='new' where i=2;
> alter table compaction_error partition (part1='aa') compact 'minor'; --or 
> major
> {code}
> data row will look like:
> 2, NULL, 'aa'



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to