Skip to content

Commit 94d1d1b

Browse files
committed
[Python] Remove workaround that excluded struct types from chunked_arrays
1 parent cd848bc commit 94d1d1b

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
@@ -386,9 +386,6 @@ def chunked_arrays(draw, type, min_chunks=0, max_chunks=None, chunk_size=None):
386386
if isinstance(type, st.SearchStrategy):
387387
type = draw(type)
388388

389-
# TODO(kszucs): remove it, field metadata is not kept
390-
h.assume(not pa.types.is_struct(type))
391-
392389
chunk = arrays(type, size=chunk_size)
393390
chunks = st.lists(chunk, min_size=min_chunks, max_size=max_chunks)
394391

0 commit comments

Comments
 (0)