this.schema = desc.getMeta().getSchema();
if(desc != null) {
fs = desc.getPath().getFileSystem(conf);
this.totalRow = desc.getMeta().getStat() != null ? desc.getMeta().getStat().getNumRows() : 0;
Collection<Fragment> frags = getFragments(desc.getMeta(), desc.getPath());
scanner = new MergeScanner(conf, desc.getMeta(), frags);
}
init();
}