PR changed-lines coverage: 87.50% (14/16, 0 noise lines excluded) Uncovered changed code (with context): ================================================================================ src/Functions/TimeSeries/timeSeriesRange.cpp ================================================================================ --- uncovered block 253-253 --- 251 | Int64 start_timestamp_raw = 0; 252 | if (common::mulOverflow(start_timestamp_column.get64(i), start_timestamp_multiplier, start_timestamp_raw)) >> 253 | throw Exception(ErrorCodes::DECIMAL_OVERFLOW, "Numeric overflow in function {}", name); 254 | auto start_timestamp = static_cast(start_timestamp_raw); 255 | --- uncovered block 258-258 --- 256 | Int64 end_timestamp_raw = 0; 257 | if (common::mulOverflow(end_timestamp_column.get64(i), end_timestamp_multiplier, end_timestamp_raw)) >> 258 | throw Exception(ErrorCodes::DECIMAL_OVERFLOW, "Numeric overflow in function {}", name); 259 | auto end_timestamp = static_cast(end_timestamp_raw); 260 | WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set