ParquetFileFormat<MockSimpleWithLong> f2 = format(MockSimpleWithLong.class);
f2.getFormatConfiguration()
.withFieldMappingStrategy(FieldMappingStrategy.NAME)
.withOnIncompatibleType(ExceptionHandlingStrategy.FAIL);
MockSimple in = new MockSimple(100, "Hello, world!");
File file = save(f1, Arrays.asList(in));
try {
load(f2, file);
fail();
} catch (IllegalArgumentException e) {