Skip to content

Commit 73fa4d4

Browse files
Merge branch 'main' into fix/python-udf-refcount-leak
2 parents f97248f + 087dd1d commit 73fa4d4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

external/duckdb

Submodule duckdb updated 48 files

tests/fast/adbc/test_connection_get_info.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ def test_connection_get_info_all(self):
2828
"duckdb",
2929
"v" + duckdb.__duckdb_version__, # don't hardcode this, as it will change every version
3030
"ADBC DuckDB Driver",
31+
"v" + duckdb.__duckdb_version__, # don't hardcode this, as it will change every version
3132
"(unknown)",
32-
"(unknown)",
33+
None,
3334
],
3435
type=pa.string(),
3536
)
@@ -58,7 +59,7 @@ def test_unrecognized_codes(self):
5859
table = reader.read_all()
5960
values = table["info_value"]
6061

61-
expected_result = pa.array(["duckdb", "(unknown)"], type=pa.string())
62+
expected_result = pa.array(["duckdb"], type=pa.string())
6263

6364
assert values.num_chunks == 1
6465
chunk = values.chunk(0)

0 commit comments

Comments
 (0)