Fokko opened a new pull request, #7044:
URL: https://github.com/apache/iceberg/pull/7044

   Currently I'm using the REST Catalog using a `catalog-impl`:
   
   ```sql
   CREATE CATALOG my_catalog WITH (
     'type'='iceberg',
     'catalog-impl'='org.apache.iceberg.rest.RESTCatalog',
     'uri'='http://localhost:8181',
     's3.access-key-id'='admin',
     's3.secret-access-key'='password',
     's3.endpoint'='http://localhost:9000'
   );
   ```
   
   But it would be nicer to have the `catalog-type` shorthand:
   
   ```sql
   CREATE CATALOG my_catalog WITH (
     'type'='iceberg',
     'catalog-type'='rest',
     'uri'='http://localhost:8181',
     's3.access-key-id'='admin',
     's3.secret-access-key'='password',
     's3.endpoint'='http://localhost:9000'
   );
   ```
   
   This PR adds this


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

Reply via email to