Skip to content

Commit

Permalink
fix: adding missing listview tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Aug 14, 2024
1 parent f557c4a commit ca74057
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit ca74057

Please sign in to comment.