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/09/22 13:54:00 UTC

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

Gabor Kaszab created IMPALA-10184:
-------------------------------------

             Summary: 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


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