allenzhg commented on issue #2277:
URL: https://github.com/apache/iceberg/issues/2277#issuecomment-787627901


   > * case
   
   1. hadoop_catalog does me created.
   building statement is :
   CREATE CATALOG hadoop_catalog WITH (
     'type'='iceberg',
     'catalog-type'='hadoop',
     'warehouse'='hdfs://usr/hive/warehouse/',
     'property-version'='1'
   );
   
   CREATE CATALOG hive_catalog WITH (
     'type'='iceberg',
     'catalog-type'='hive',
     'uri'='thrift://172.24.xxx:xxx'
     'clients'='20',
     'property-version'='1',
     'warehouse'='hdfs://usr/hive/warehouse/'
   );
   
   2. create same table for sample1 and have a same error.
    create table statement  in flink sql client:
   USE CATALOG hive_catalog;
   CREATE DATABASE iceberg_db;
   CREATE TABLE sample1(
       id BIGINT COMMENT 'unique id',
       data STRING
   );
   
   thanks. 


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to