Skip to content

Commit 1c29350

Browse files
committed
[Python] Remove workaround that excluded struct types from chunked_arrays
1 parent 8974ddc commit 1c29350

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

python/pyarrow/tests/strategies.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,9 +370,6 @@ def chunked_arrays(draw, type, min_chunks=0, max_chunks=None, chunk_size=None):
370370
if isinstance(type, st.SearchStrategy):
371371
type = draw(type)
372372

373-
# TODO(kszucs): remove it, field metadata is not kept
374-
h.assume(not pa.types.is_struct(type))
375-
376373
chunk = arrays(type, size=chunk_size)
377374
chunks = st.lists(chunk, min_size=min_chunks, max_size=max_chunks)
378375

0 commit comments

Comments
 (0)