Skip to content

Commit

Permalink
Try fix for JNI test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Dec 4, 2024
1 parent 450410a commit cc79516
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ private VectorSchemaRoot generateAllTypesVector(BufferAllocator allocator) {
List<Field> childFields = new ArrayList<>();
childFields.add(
new Field(
"int-child", new FieldType(false, new ArrowType.Int(32, true), null, null), null));
"int-child", FieldType.nullable(new ArrowType.Int(32, true)), null));
Field structField =
new Field(
"struct", new FieldType(true, ArrowType.Struct.INSTANCE, null, null), childFields);
"struct", FieldType.nullable(ArrowType.Struct.INSTANCE), childFields);
Field[] fields =
new Field[] {
Field.nullablePrimitive("null", ArrowType.Null.INSTANCE),
Expand Down

0 comments on commit cc79516

Please sign in to comment.