kszucs commented on code in PR #45001:
URL: https://github.com/apache/arrow/pull/45001#discussion_r1883831134
##########
python/pyarrow/tests/test_compute.py:
##########
@@ -3721,3 +3724,25 @@ def test_pairwise_diff():
with pytest.raises(pa.ArrowInvalid,
match="overflow"):
pa.compute.pairwise_diff_checked(arr, period=-1)
+
+
+hash_types = st.deferred(
+ lambda: (
+ past.primitive_types |
+ past.list_types(include_views=False) |
+ past.struct_types() |
+ past.dictionary_types() |
+ past.map_types() |
+ past.list_types(hash_types, include_views=False) |
+ past.struct_types(hash_types)
+ )
+)
+
+
[email protected]
[email protected](past.arrays(hash_types, nullable=True))
+def test_hash_64(arr):
Review Comment:
Also added a hash32 case.
--
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]