Skip to content

Commit fe95068

Browse files
chore: linter
1 parent 7f75231 commit fe95068

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/com/influxdb/v3/client/TestUtils.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ public static VectorSchemaRoot generateVectorSchemaRootWithNull() {
100100
FieldType stringType = new FieldType(true, new ArrowType.Utf8(), null, metadata);
101101
Field normalField = new Field("normalField", stringType, null);
102102
Field nullField = new Field("nullField", FieldType.nullable(new ArrowType.Utf8()), null);
103-
Field nullField1 = new Field("nullField1", FieldType.nullable(new ArrowType.Int(64, true)), null);
103+
Field nullField1 = new Field(
104+
"nullField1",
105+
FieldType.nullable(new ArrowType.Int(64, true)), null
106+
);
104107

105108
Schema schema = new Schema(List.of(normalField, nullField, nullField1));
106109
VectorSchemaRoot vectorSchemaRoot = VectorSchemaRoot.create(schema, new RootAllocator(Long.MAX_VALUE));

0 commit comments

Comments
 (0)