| 901 | } |
| 902 | |
| 903 | const CodegenFnPtrBase* HdfsScanNodeBase::GetCodegenFn(THdfsFileFormat::type type) { |
| 904 | HdfsScanPlanNode::CodegendFnMap::const_iterator it = codegend_fn_map_.find(type); |
| 905 | if (it == codegend_fn_map_.end()) return nullptr; |
| 906 | return &it->second; |
| 907 | } |
| 908 | |
| 909 | Status HdfsScanNodeBase::CreateAndOpenScannerHelper(HdfsPartitionDescriptor* partition, |
| 910 | ScannerContext* context, scoped_ptr<HdfsScanner>* scanner) { |
no test coverage detected