| 539 | } |
| 540 | |
| 541 | bool HdfsOrcScanner::IsPartitionKeySlot(const SlotDescriptor* slot) { |
| 542 | return file_metadata_utils_.IsValuePartitionCol(slot); |
| 543 | } |
| 544 | |
| 545 | bool HdfsOrcScanner::IsMissingField(const SlotDescriptor* slot) { |
| 546 | return missing_field_slots_.find(slot) != missing_field_slots_.end(); |
no test coverage detected