pitrou commented on code in PR #40381:
URL: https://github.com/apache/arrow/pull/40381#discussion_r1514176368
##########
python/pyarrow/tests/strategies.py:
##########
@@ -322,6 +322,10 @@ def arrays(draw, type, size=None, nullable=True):
value = _pylist(ty.value_type, size=size, nullable=nullable)
elif pa.types.is_fixed_size_list(ty):
value = _pylist(ty.value_type, size=ty.list_size, nullable=nullable)
+ elif pa.types.is_list_view(ty):
+ value = _pylist(ty.value_type, size=size, nullable=nullable)
+ elif pa.types.is_large_list_view(ty):
+ value = _pylist(ty.value_type, size=size, nullable=nullable)
Review Comment:
Do we want to create issues to add REE and StringView support as well?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]