From 802f23e4b43cd7fa8fe9e649c828dfae8811518a Mon Sep 17 00:00:00 2001 From: Vibhatha Abeykoon Date: Wed, 14 Aug 2024 07:23:27 +0530 Subject: [PATCH] fix: adding listview and largelistview json file tests --- .../test/java/org/apache/arrow/vector/ipc/TestJSONFile.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/java/vector/src/test/java/org/apache/arrow/vector/ipc/TestJSONFile.java b/java/vector/src/test/java/org/apache/arrow/vector/ipc/TestJSONFile.java index 31fd15bc5c1ed..8037212aaea21 100644 --- a/java/vector/src/test/java/org/apache/arrow/vector/ipc/TestJSONFile.java +++ b/java/vector/src/test/java/org/apache/arrow/vector/ipc/TestJSONFile.java @@ -445,6 +445,10 @@ public void testRoundtripEmptyVector() throws Exception { "largelist", FieldType.nullable(ArrowType.LargeList.INSTANCE), Collections.singletonList(Field.nullable("items", new ArrowType.Int(32, true)))), + new Field( + "largelistview", + FieldType.nullable(ArrowType.LargeListView.INSTANCE), + Collections.singletonList(Field.nullable("items", new ArrowType.Int(32, true)))), new Field( "map", FieldType.nullable(new ArrowType.Map(/*keyssorted*/ false)),