Changed-lines coverage: PR changed C/C++ lines covered by tests: 84.91% (45/53) Uncovered changed code (with context): ================================================================================ src/Processors/Formats/Impl/NativeORCBlockInputFormat.cpp ================================================================================ --- uncovered block 1717-1723 --- 1715 | Int32 days_num = static_cast(orc_int_column->data[i]); 1716 | if (check_date32_range && (days_num > DATE_LUT_MAX_EXTEND_DAY_NUM || days_num < -DAYNUM_OFFSET_EPOCH)) >> 1717 | throw Exception( >> 1718 | ErrorCodes::VALUE_IS_OUT_OF_RANGE_OF_DATA_TYPE, >> 1719 | "Input value {} of a column \"{}\" exceeds the range of type Date32, which is [{}, {}]", >> 1720 | days_num, >> 1721 | column_name, >> 1722 | -DAYNUM_OFFSET_EPOCH, >> 1723 | DATE_LUT_MAX_EXTEND_DAY_NUM); 1724 | 1725 | if (check_date_range && (days_num > DATE_LUT_MAX_DAY_NUM || days_num < 0)) --- uncovered block 1887-1887 --- 1885 | return readColumnWithBigNumberFromBinaryData(orc_column, column_name, type_hint); 1886 | case TypeIndex::UInt256: >> 1887 | return readColumnWithBigNumberFromBinaryData(orc_column, column_name, type_hint); 1888 | default:; 1889 | } WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 865,626/1,011,912 -> current 865,786/1,011,926 (delta +160 / +14) Functions : baseline 944,488/1,019,381 -> current 944,513/1,019,388 (delta +25 / +7) Branches : baseline 277,961/357,564 -> current 278,046/357,574 (delta +85 / +10)