You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by GitBox <gi...@apache.org> on 2022/02/25 06:17:59 UTC

[GitHub] [iceberg] zihaochen68 commented on issue #4219: where is comment info for column or table in iceberg

zihaochen68 commented on issue #4219:
URL: https://github.com/apache/iceberg/issues/4219#issuecomment-1050560323


   > Can you give details on how you wrote the comments on the fields?
   
   i'm create a table in flink SQL
   Here is my catalog:
   ```
   CREATE CATALOG hive_catalog WITH (
     'type'='iceberg',
     'catalog-type'='hive',
     'uri'='thrift://localhost:port',
     'clients'='5',
     'property-version'='1',
     'warehouse'='hdfs://localhost:port/hive/metastore/catalog'
   );
   ```
   Then
   ```
   CREATE TABLE hive_catalog.yuyi.sample (
       id BIGINT COMMENT 'unique id',
       test STRING COMMENT 'test'
   ) COMMENT 'a';
   ```
   
   where can i find my comments for table or column.
   There are not in hive or {version}.metadata.json
   
   thnx
   
   
   
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



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