You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Zoltán Borók-Nagy (Jira)" <ji...@apache.org> on 2021/06/08 15:18:00 UTC

[jira] [Created] (IMPALA-10735) INSERT INTO Iceberg table fails during INSERT event generation

Zoltán Borók-Nagy created IMPALA-10735:
------------------------------------------

             Summary: INSERT INTO Iceberg table fails during INSERT event generation
                 Key: IMPALA-10735
                 URL: https://issues.apache.org/jira/browse/IMPALA-10735
             Project: IMPALA
          Issue Type: Bug
            Reporter: Zoltán Borók-Nagy


INSERT INTO Iceberg table is broken when we use INSERT events.

We get a NullPointerException for partitioned tables here:

[https://github.com/apache/impala/blob/0c89a9cf0f2b642ca214e4fa68eeea9bc32ef3af/fe/src/main/java/org/apache/impala/service/CatalogOpExecutor.java#L4953]

Repro:

 
{noformat}
create table test_ice (i int, p int) partition by spec (p bucket 5) stored as iceberg;
insert into test_ice values (1, 2);
{noformat}
 

Since Hive Replication doesn't work for Iceberg tables yet it's probably better to disable INSERT events for Iceberg tables.



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