You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Prasanth Jayachandran (JIRA)" <ji...@apache.org> on 2018/06/14 23:24:00 UTC

[jira] [Assigned] (HIVE-15190) Field names are not preserved in ORC files written with ACID

     [ https://issues.apache.org/jira/browse/HIVE-15190?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Prasanth Jayachandran reassigned HIVE-15190:
--------------------------------------------

    Assignee: Prasanth Jayachandran  (was: Anthony Hsu)

> Field names are not preserved in ORC files written with ACID
> ------------------------------------------------------------
>
>                 Key: HIVE-15190
>                 URL: https://issues.apache.org/jira/browse/HIVE-15190
>             Project: Hive
>          Issue Type: Bug
>    Affects Versions: 2.1.0, 2.2.0, 3.1.0, 4.0.0
>            Reporter: Anthony Hsu
>            Assignee: Prasanth Jayachandran
>            Priority: Critical
>         Attachments: HIVE-15190.1.patch, HIVE-15190.2.patch, HIVE-15190.3.patch
>
>
> To repro:
> {noformat}
> drop table if exists orc_nonacid;
> drop table if exists orc_acid;
> create table orc_nonacid (a int) clustered by (a) into 2 buckets stored as orc;
> create table orc_acid (a int) clustered by (a) into 2 buckets stored as orc TBLPROPERTIES('transactional'='true');
> insert into table orc_nonacid values(1), (2);
> insert into table orc_acid values(1), (2);
> {noformat}
> Running {{hive --service orcfiledump <file>}} on the files created by the {{insert}} statements above, you'll see that for {{orc_nonacid}}, the files have schema {{struct<a:int>}} whereas for {{orc_acid}}, the files have schema {{struct<operation:int,originalTransaction:bigint,bucket:int,rowId:bigint,currentTransaction:bigint,row:struct<_col0:int>>}}. The last field {{row}} should have schema {{struct<a:int>}}.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)