use of org.apache.drill.exec.physical.resultSet.model.MetadataProvider.MetadataCreator in project drill by apache.
the class SimpleReaderBuilder method build.
public static RowSetReaderImpl build(VectorContainer container, ReaderIndex rowIndex) {
MetadataCreator mdCreator = new MetadataCreator();
List<AbstractObjectReader> children = INSTANCE.buildContainerChildren(container, mdCreator);
return new RowSetReaderImpl(mdCreator.tuple(), rowIndex, children);
}
Aggregations