use of org.apache.drill.exec.physical.impl.xsort.managed.SortTestUtilities.CopierTester in project drill by axbaretto.
the class TestCopier method testSingleRow.
@Test
public void testSingleRow() throws Exception {
BatchSchema schema = SortTestUtilities.nonNullSchema();
CopierTester tester = new CopierTester(fixture);
tester.addInput(fixture.rowSetBuilder(schema).addRow(10, "10").withSv2().build());
tester.addOutput(fixture.rowSetBuilder(schema).addRow(10, "10").build());
tester.run();
}
Aggregations