PR changed-lines coverage: 92.59% (75/81, 0 noise lines excluded) Uncovered changed code (with context): ================================================================================ src/Processors/Formats/Impl/ArrowColumnToCHColumn.cpp ================================================================================ --- uncovered block 149-149 --- 147 | 148 | if (!interval_kind) >> 149 | throw Exception(ErrorCodes::UNKNOWN_TYPE, "Unsupported Arrow duration unit {}", static_cast(duration_type.unit())); 150 | 151 | auto internal_type = std::make_shared(IntervalKind(*interval_kind)); --- uncovered block 1517-1519 --- 1515 | return readColumnWithTime32Data(arrow_column, column_name); 1516 | } >> 1517 | case arrow::Type::TIME64: >> 1518 | { >> 1519 | return readColumnWithTime64Data(arrow_column, column_name); 1520 | } 1521 | case arrow::Type::DURATION: ================================================================================ src/Processors/Formats/Impl/CHColumnToArrowColumn.cpp ================================================================================ --- uncovered block 998-998 --- 996 | break; 997 | FOR_INTERNAL_NUMERIC_TYPES(DISPATCH) >> 998 | #undef DISPATCH 999 | case TypeIndex::Interval: 1000 | { --- uncovered block 1017-1017 --- 1015 | } 1016 | default: >> 1017 | throw Exception(ErrorCodes::UNKNOWN_TYPE, "Internal type '{}' of a column '{}' is not supported for conversion into {} data format.", column_type->getFamilyName(), column_name, format_name); 1018 | } 1019 | } WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set