Tom Ebergen
Tom Ebergen
Hi @chespinoza, we are currently working on supporting those parameters. See https://github.com/duckdb/duckdb-iceberg/pull/132. Let me know if you still have questions.
Hi @chespinoza, we've refactored some of our attach functionality, you should be able to attach a catalog and specify most parameters in the following way ``` Attach {warehouse} as my_iceberg_catalog...
Hi @lhoestq , We have updated some of the documentation for Iceberg [here](https://duckdb.org/docs/stable/core_extensions/iceberg/iceberg_rest_catalogs.html) for duckdb v1.3.0. We haven't fully tested it with hugging face storage so I'm not sure if...
Hi @phitoduck , We had a similar issue filed a while ago. Have you tried some of the attach methods described here? https://github.com/duckdb/duckdb-iceberg/issues/265 Please use the latest nightly when trying,...
Hi @shadercode, Thank you for trying out v1.4! Have you managed to get this to work with another open source query engine? That will help pinpoint if this is a...
@phitoduck can this issue be closed now? Or are you still experiencing connection issues?
Hi @shashideore , I assume you are using a profile that assumes another role? I think this is similar to https://github.com/duckdb/duckdb-aws/issues/101 and https://github.com/duckdb/duckdb-aws/issues/89 For now my advice is to change...
@Tishj Also added some more logic around null partitions, I can also take it out and put it in a separate PR if needed
Thanks, I'm gonna add some more tests though around promoting partitioned types just to make sure. I.e a int -> a varchar (partitioned on identity transform) a int -> a...
So int -> varchar type promotion is not supported in Iceberg, so we don't have to worry about that. ([source](https://iceberg.apache.org/spec/#schema-evolution)) But I will still add a case where a data...