| 374 | } |
| 375 | |
| 376 | inline uint64_t OrcComplexColumnReader::GetTargetColId( |
| 377 | const SlotDescriptor* slot_desc) const { |
| 378 | return slot_desc->type().IsCollectionType() ? |
| 379 | GetColId(slot_desc->children_tuple_descriptor()): |
| 380 | GetColId(slot_desc); |
| 381 | } |
| 382 | |
| 383 | /** |
| 384 | * Returns true if 'candidate_col_id' is under 'node' in the type hierarchy. |
nothing calls this directly
no test coverage detected