Thijs

Results 416 comments of Thijs

When CI is green I'll have a look, thanks 👍

The `mytable_partitioned` is the problem, you'll need to regenerate that table For reference, this is what was used to generate `mytable` ```java // src/main/java/com/example/IcebergEqualDeleteExample.java // ------------------------------------------------------ // Place this file...

Yea I also had a discussion with Mark on this, we shouldn't need to do any `/tables` requests to list anything For `/namespaces` I think we do, otherwise it becomes...

#213 was an allocation made with just `malloc` (wrapped by `duckdb_malloc` but under the hood that's just `malloc`) Never the less still good to add this for sure 👍

> Also, I registered the table as a table and did the same query and it returned the proper results, which means it happens only when reading directly from the...

Ideally I'd need the iceberg table so I can see what partitions are written into the manifest, what it's partitioned on, and how the data is divided over the existing...

You say it's partitioned on a `day` transform, over a `timestamptz` column? Then I really don't understand why this is being filtered too aggressively, because we haven't implemented filtering at...

One more thing, you're using `duckdb.sql(...)` Have you verified that this is the result when you add a `.show()` to the produced relation? It's possible that the preview you're seeing...

I get the feeling this is related to timezones, see this test file, note the explicit setting of the timezone ```sql require avro require parquet require iceberg require httpfs require...