Skip to content

Commit

Permalink
VarBin builder
Browse files Browse the repository at this point in the history
  • Loading branch information
gatesn committed Mar 26, 2024
1 parent dc26138 commit da88668
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyvortex/test/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def test_varbin_array_take():
a = vortex.encode(pa.array(["a", "b", "c", "d"]))
# TODO(ngates): ensure we correctly round-trip to a string and not large_string
assert a.take(vortex.encode(pa.array([0, 2]))).to_pyarrow().combine_chunks() == pa.array(
["a", "c"], type=pa.large_utf8(),
["a", "c"],
type=pa.large_utf8(),
)


Expand Down

0 comments on commit da88668

Please sign in to comment.