vibhatha commented on code in PR #43077: URL: https://github.com/apache/arrow/pull/43077#discussion_r1689408357
########## java/c/src/test/python/integration_tests.py: ########## @@ -277,6 +277,29 @@ def recreate_batch(): self.round_trip_record_batch(recreate_batch) + def test_listview_array(self): + self.round_trip_array(lambda: pa.array( + [[], [0], [1, 2], [4, 5, 6]], pa.list_view(pa.int64()) + # disabled check_metadata since the listview internal field name ("item") + # is not preserved during round trips (it becomes "$data$"). Review Comment: Removed and will create a follow up PR. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org