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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]