97.87% (138/141) Uncovered changed code (with context): ================================================================================ src/DataTypes/NestedUtils.cpp ================================================================================ --- uncovered block 135-135 --- 133 | const auto * tuple_type = typeid_cast(type_nullable->getNestedType().get()); 134 | if (!tuple_type) >> 135 | return column; 136 | 137 | const auto & col_nullable = assert_cast(*column.column); --- uncovered block 172-173 --- 170 | else if (elem_type->canBeInsideNullable()) 171 | { >> 172 | new_elements.push_back(ColumnNullable::create(elem_col, null_map_ptr)); >> 173 | new_types.push_back(std::make_shared(elem_type)); 174 | } 175 | else No lost baseline coverage found. WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 746,085/888,197 -> current 746,117/888,306 (delta +32 / +109) Functions : baseline 803,517/883,980 -> current 803,314/883,902 (delta -203 / -78) Branches : baseline 242,069/316,306 -> current 241,851/316,346 (delta -218 / +40)