ZhangHuiGui commented on code in PR #41295:
URL: https://github.com/apache/arrow/pull/41295#discussion_r1584727373
##########
python/pyarrow/tests/test_array.py:
##########
@@ -2876,6 +2879,7 @@ def test_fixed_size_list_array_flatten():
assert arr0.type.equals(typ0)
assert arr1.flatten().equals(arr0)
assert arr2.flatten().flatten().equals(arr0)
+ assert arr2.flatten(True).equals(arr0)
Review Comment:
Yes, the `recursive` parameter defaults to `False` in the flatten interface,
but some of the previous test cases do not include this test. We should add
such a test case here.
--
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]