pitrou commented on code in PR #12096: URL: https://github.com/apache/arrow/pull/12096#discussion_r857519420
########## python/pyarrow/tests/test_compute.py: ########## @@ -1187,8 +1187,8 @@ def test_drop_null(ty, values): def test_drop_null_chunked_array(): - arr = pa.chunked_array([["a", None], ["c", "d", None], [None], []]) - expected_drop = pa.chunked_array([["a"], ["c", "d"], [], []]) + arr = pa.chunked_array([[None, None], [None], []]) Review Comment: Hmm, this could be a slight API break. @jorisvandenbossche What do you think? -- 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]
