We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba7e938 commit 91e1b6aCopy full SHA for 91e1b6a
vector/src/test/java/org/apache/arrow/vector/TestMapVector.java
@@ -1397,7 +1397,10 @@ public void testFixedSizeBinaryWriter() {
1397
writer.setPosition(0); // optional
1398
writer.startMap();
1399
writer.startEntry();
1400
- writer.key().fixedSizeBinary(holder1.byteWidth).write(holder1); // need to initialize with byteWidth - NPE otherwise
+ writer
1401
+ .key()
1402
+ .fixedSizeBinary(holder1.byteWidth)
1403
+ .write(holder1); // need to initialize with byteWidth - NPE otherwise
1404
writer.value().fixedSizeBinary(holder2.byteWidth).write(holder2);
1405
writer.endEntry();
1406
holder1.buffer.close();
0 commit comments