alberttwong commented on code in PR #458: URL: https://github.com/apache/incubator-xtable/pull/458#discussion_r1627908485
########## website/docs/hms.md: ########## @@ -218,6 +228,38 @@ using query engines like `Presto` and/or `Trino`. Check out the guides for query SELECT * FROM iceberg_db.<table_name>; ``` +```sql md title="sql for Iceberg, Hudi and Delta Lake in S3" +select * from hudi.hudi_db.people; +select * from delta.delta_db.people; +select * from iceberg.iceberg_db.people; +``` + +In the example docker image, you can find the catalog configurations in `/etc/trino/catalog` +```shell md title="Trino Catalog with S3" +trino@trino:/$ cat /etc/trino/catalog/hudi.properties Review Comment: done. -- 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]
