felipecrv commented on code in PR #35345:
URL: https://github.com/apache/arrow/pull/35345#discussion_r1395038876


##########
cpp/src/arrow/c/bridge_test.cc:
##########
@@ -3631,6 +3824,13 @@ TEST_F(TestArrayRoundtrip, List) {
   TestWithJSONSliced(fixed_size_list(int32(), 3), "[[4, 5, 6], null, [7, 8, 
null]]");
 }
 
+TEST_F(TestArrayRoundtrip, ListView) {
+  TestWithJSON(list_view(int32()), "[]");
+  TestWithJSON(list_view(int32()), "[[4, 5], [6, null], null]");

Review Comment:
   Isn't that an overkill given that round-tripping is all about passing the 
buffers around correctly without any consideration about their contents?



-- 
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]

Reply via email to