Thijs
Thijs
Just wanted to circle back to this a little, I find I'm really missing the convenience of not having to substitute spaces for tabs, so I'm likely going to add...
> So it's not the `UnicodeDecodeError`, but something like `IOError` What do you mean by this? I'm expecting this to cause an IOException, I don't see how you are hitting...
```py catalog = RestCatalog( name="my_catalog", warehouse=WAREHOUSE, uri=CATALOG_URI, token=TOKEN, ) ``` This looks to me like it translates to: ```sql attach '' as my_catalog ( TYPE iceberg, ENDPOINT , TOKEN );...
We just released duckdb-iceberg for 1.2.2, that should include the changes of #142 which enables the above comment 👍 Let me know if you run into any issues connecting to...
Hmm try `USE my_catalog.;` I think by default we look in the `main` schema, but Iceberg REST Catalogs don't seem to use this same standard, so our defaults fail. Your...
See #171, fix for that is in the works :)
> [@Tishj](https://github.com/Tishj) as [#207](https://github.com/duckdb/duckdb-iceberg/pull/207) is closed, should this now work? The "Invalid field found while parsing field: type" error was fixed by #207 The R2 catalog support was added by...
The next release will be 1.3.0, these changes are not backported
> Thanks for the PR! > > I don't quite follow what this PR enables - can you not already assign the default connection like so? > > ```python >...
There might be some way we can look up the current value of the `default_connection` attribute, but that would need to go through Python every time, and we wouldn't be...