duckdb / duckdb-java

DuckDB JDBC Driver
https://duckdb.org/docs/api/java.html
MIT License
42 stars 23 forks source link

Fix https://github.com/duckdb/duckdb-java/issues/66 #67

Closed rpbouman closed 2 months ago

rpbouman commented 3 months ago

I wanted to check something around Blob handling and checked out the repo, built it, ran the tests and found two tests failing (TestDuckDBJDBC#test_all_types and TestDuckDBJDBC#test_struct_with_bad_type)

This PR fixes those tests.

For TestDuckDBJDBC#test_all_types:

For TestDuckDBJDBC#test_struct_with_bad_type:

rpbouman commented 3 months ago

I'm sorry to PR test failed. I tried to figure it out but I believe the compliance action is broken, as it's complaining that it cannot find classes from the test harness itself.

Mause commented 2 months ago

I'm sorry to PR test failed. I tried to figure it out but I believe the compliance action is broken, as it's complaining that it cannot find classes from the test harness itself.

Yeah it's broken at the moment, need to get around to fixing it

Cheers for the other fixes though!