Skip to content

Commit

Permalink
test(duckdb): add test for supporting fixed-size array types
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrist committed Aug 16, 2024
1 parent 6780a6b commit 53b21c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ibis/backends/duckdb/tests/test_datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
("UUID", dt.uuid),
("VARCHAR", dt.string),
("INTEGER[]", dt.Array(dt.int32)),
("INTEGER[3]", dt.Array(dt.int32)),
("MAP(VARCHAR, BIGINT)", dt.Map(dt.string, dt.int64)),
(
"STRUCT(a INTEGER, b VARCHAR, c MAP(VARCHAR, DOUBLE[])[])",
Expand Down

0 comments on commit 53b21c8

Please sign in to comment.