rymurr commented on pull request #2031:
URL: https://github.com/apache/iceberg/pull/2031#issuecomment-760099383


   I am fine with this approach however I wonder what the flink folks think? I 
am not sure if that breaks compatibility anywhere?
   
   I've updated the PR with @jackye1995's proposal and the following works with 
the Nessie catalog. 
   
   ```
   CREATE CATALOG nessie_catalog WITH (
       'type'='iceberg',
       'catalog-impl'='org.apache.iceberg.nessie.NessieCatalog',
       'url'='http://localhost:19120/api/v1',
       'warehouse'='/home/ryan/warehouse');
   CREATE TABLE nessie_catalog.testns.foo (
       id BIGINT COMMENT 'unique id',
       data STRING
    );
   INSERT INTO nessie_catalog.testns.foo VALUES (1, 'a');
   SELECT * FROM nessie_catalog.testns.foo;
   ```


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