From ca7405729b21864dea9b2f2a521a7364f0818555 Mon Sep 17 00:00:00 2001 From: Vibhatha Abeykoon Date: Wed, 14 Aug 2024 07:08:02 +0530 Subject: [PATCH] fix: adding missing listview 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 c69a3bfbc1ee2..31fd15bc5c1ed 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 @@ -437,6 +437,10 @@ public void testRoundtripEmptyVector() throws Exception { "list", FieldType.nullable(ArrowType.List.INSTANCE), Collections.singletonList(Field.nullable("items", new ArrowType.Int(32, true)))), + new Field( + "listview", + FieldType.nullable(ArrowType.ListView.INSTANCE), + Collections.singletonList(Field.nullable("items", new ArrowType.Int(32, true)))), new Field( "largelist", FieldType.nullable(ArrowType.LargeList.INSTANCE),