Package com.asakusafw.directio.hive.serde.mock

Examples of com.asakusafw.directio.hive.serde.mock.MockSimple


        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) {
View Full Code Here

TOP

Related Classes of com.asakusafw.directio.hive.serde.mock.MockSimple

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.