use of org.apache.drill.exec.physical.impl.scan.v3.schema.ScanProjectionParser.ProjectionParseResult in project drill by apache.
the class TestProjectedPath method testProjectAll.
@Test
public void testProjectAll() {
ProjectionParseResult result = ScanProjectionParser.parse(RowSetTestUtils.projectAll());
// No constraints on wildcard projection
assertAllConsistent(result.dynamicSchema);
}
Aggregations