You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2022/05/02 09:23:00 UTC

[jira] [Work logged] (HIVE-26189) Iceberg metadata query throws exceptions after partition evolution

     [ https://issues.apache.org/jira/browse/HIVE-26189?focusedWorklogId=764884&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-764884 ]

ASF GitHub Bot logged work on HIVE-26189:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 02/May/22 09:22
            Start Date: 02/May/22 09:22
    Worklog Time Spent: 10m 
      Work Description: szlta merged PR #3258:
URL: https://github.com/apache/hive/pull/3258




Issue Time Tracking
-------------------

    Worklog Id:     (was: 764884)
    Time Spent: 20m  (was: 10m)

> Iceberg metadata query throws exceptions after partition evolution
> ------------------------------------------------------------------
>
>                 Key: HIVE-26189
>                 URL: https://issues.apache.org/jira/browse/HIVE-26189
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Ádám Szita
>            Assignee: Ádám Szita
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> The following test case surfaced two issues with metadata table queries:
> {code:java}
> CREATE EXTERNAL TABLE `partevv`( `id` int, `ts` timestamp, `ts2` timestamp)  STORED BY ICEBERG STORED AS ORC TBLPROPERTIES  ('format-version'='1');
> ALTER TABLE partevv SET PARTITION SPEC (id);
> INSERT INTO partevv VALUES (1, current_timestamp(), current_timestamp());
> INSERT INTO partevv VALUES (2, current_timestamp(), current_timestamp());
> ALTER TABLE partevv SET PARTITION SPEC (day(ts));
> INSERT INTO partevv VALUES (100, current_timestamp(), current_timestamp());
> select * from default.partevv.partitions;  {code}
>  * NPE for removed partition columns from new specs:
> {code:java}
> Caused by: java.lang.NullPointerException
>         at org.apache.iceberg.mr.mapreduce.IcebergInternalRecordWrapper.lambda$converter$5(IcebergInternalRecordWrapper.java:147) {code}
>  * ClassCastException for day partition transforms
> {code:java}
> java.lang.ClassCastException: java.lang.Integer cannot be cast to java.time.LocalDate {code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)