Mark Litwintschik

Results 89 comments of Mark Litwintschik
trafficstars

I was able to re-produce the issue without needing the download the PQ files first. ```sql SELECT sources->0->'dataset' AS source, COUNT(*) FROM READ_PARQUET('s3://overturemaps-us-west-2/release/2024-08-20.0/theme=buildings/type=building/*.parquet') GROUP BY 1 ORDER BY 2 DESC...

The local version of this issue has been fixed as of v1.1.1 af39bd0dcf. ```sql SELECT sources->0->'dataset' AS source, COUNT(*) FROM READ_PARQUET('part-*.parquet') GROUP BY 1 ORDER BY 2 DESC; ``` ```...

This memory allocation issue has been resolved so I'll close this ticket. #13505 has the malformed JSON issue recorded.

I'm using a 6 GHz Intel Core i9-14900K CPU. I'm able to get this error to come up repeatedly and it was a problem a few weeks ago when I...

From https://github.com/isaacbrodsky/h3-duckdb/issues/122 > Windows Server might be different enough to warrant its own testing and not great for uncovering Windows 11 issues.

This is still an issue in v1.1.1 af39bd0dcf ```sql SELECT country, COUNT(*) AS num_addrs, sources->0->'dataset' AS source FROM READ_PARQUET('s3://overturemaps-us-west-2/release/2024-08-20.0/theme=addresses/type=address/*.parquet', hive_partitioning=1) WHERE country != 'US' GROUP BY 1, 3 ORDER BY...

Yeah, WSL 2. I can reproduce the issue between reboots. I'll see if I can compile DuckDB and run gdb to get something more substantial to share.

I tried the query again on v1.1.3 19864453f7. Without the US data it runs fine. ```sql SELECT country, COUNT(*) AS num_addrs, sources->0->'dataset' AS source FROM READ_PARQUET('s3://overturemaps-us-west-2/release/2024-08-20.0/theme=addresses/type=address/*.parquet', hive_partitioning=1) WHERE country !=...

I created an Ubuntu 22 VM via VirtualBox on my Windows machine and compiled DuckDB v1.1.3. The VM has 16 GB of RAM, 100 GB of storage and access to...

I built a new AMD Ryzen 9 9950X machine to get away from the instability issues I was having with the 14900K. As a last throw of the dice, I...