| 355 | } |
| 356 | |
| 357 | bool FileMetadataUtils::NeedDataInFile(const SlotDescriptor* slot_desc) { |
| 358 | if (IsValuePartitionCol(slot_desc)) return false; |
| 359 | if (slot_desc->IsVirtual()) return false; |
| 360 | if (HasIcebergDefaultValue(slot_desc)) return false; |
| 361 | return true; |
| 362 | } |
| 363 | |
| 364 | bool FileMetadataUtils::ShouldSkipReadFromFile(const SlotDescriptor* slot_desc) { |
| 365 | // Skip partition columns as they're populated from partition values |
no test coverage detected