Package com.asakusafw.directio.hive.parquet.mock

Examples of com.asakusafw.directio.hive.parquet.mock.MockSimpleWithLong


        MockSimple in = new MockSimple(100, "Hello, world!");
        File file = save(f1, Arrays.asList(in));
        List<MockSimpleWithLong> results = load(f2, file);
        assertThat(results, hasSize(1));
        MockSimpleWithLong out = results.get(0);
        assertThat(out.number, is(new LongOption()));
        assertThat(out.string, is(in.string));
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.directio.hive.parquet.mock.MockSimpleWithLong

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.