You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues-all@impala.apache.org by "Gabor Kaszab (Jira)" <ji...@apache.org> on 2020/10/06 06:11:00 UTC

[jira] [Resolved] (IMPALA-10184) Iceberg PARTITION SPEC missing from SHOW CREATE TABLE

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

Gabor Kaszab resolved IMPALA-10184.
-----------------------------------
    Target Version: Impala 4.0
        Resolution: Fixed

> Iceberg PARTITION SPEC missing from SHOW CREATE TABLE
> -----------------------------------------------------
>
>                 Key: IMPALA-10184
>                 URL: https://issues.apache.org/jira/browse/IMPALA-10184
>             Project: IMPALA
>          Issue Type: Bug
>          Components: Frontend
>            Reporter: Gabor Kaszab
>            Assignee: Gabor Kaszab
>            Priority: Major
>              Labels: impala-iceberg
>
> The PARTITION SPEC is missing from the SHOW CREATE TABLE output for Iceberg tables.
> This is how I created a table:
> {code:java}
> create table iceberg_tmp2 (
>   i int, 
>   s string, 
>   p1 string,
>   p2 timestamp
> ) 
> partition by spec (
>   p1 identity, 
>   p2 Day
> ) 
> stored as iceberg;
> {code}
> And this is the output of SHOW CREATE TABLE for the same table:
> {code:java}
> +-----------------------------------------------------------+
> | CREATE EXTERNAL TABLE default.iceberg_tmp2 (
> |   i INT,
> |   s STRING, 
> |   p1 STRING,
> |   p2 TIMESTAMP
> | )
> | STORED AS ICEBERG 
> | LOCATION 'hdfs://localhost:20500/test-warehouse/iceberg_tmp2'                                                        | TBLPROPERTIES ('OBJCAPABILITIES'='EXTREAD,EXTWRITE', 'external.table.purge'='TRUE', 'iceberg_file_format'='parquet')
> +----------------------------------------------------------------------+
> {code}



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

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-all-unsubscribe@impala.apache.org
For additional commands, e-mail: issues-all-help@impala.apache.org