Changed-lines coverage: PR changed C/C++ lines covered by tests: 96.39% (187/194) Uncovered changed code (with context): ================================================================================ src/Processors/QueryPlan/ReadFromMemoryStorageStep.cpp ================================================================================ --- uncovered block 151-151 --- 149 | /// without reading the rest of its columns. 150 | if (isCancelled()) >> 151 | return {}; 152 | continue; 153 | } --- uncovered block 250-250 --- 248 | ConstantFilterDescription constant_filter(*filter_column); 249 | if (constant_filter.always_false) >> 250 | return std::nullopt; 251 | 252 | if (!constant_filter.always_true) --- uncovered block 326-328 --- 324 | if (which.isNativeInt() || which.isNativeUInt()) 325 | return type->createColumnConst(num_rows, 1u)->convertToFullColumnIfConst(); >> 326 | if (which.isFloat()) >> 327 | return type->createColumnConst(num_rows, 1.0f)->convertToFullColumnIfConst(); >> 328 | throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_COLUMN_FOR_FILTER, "Illegal type {} of column for filter", type->getName()); 329 | } 330 | ================================================================================ src/Storages/StorageMemory.cpp ================================================================================ --- uncovered block 781-783 --- 779 | { 780 | if (query_context->getPinnedStorageSnapshot(getStorageID().uuid)) >> 781 | return false; 782 | if (query_context->hasQueryContext() && query_context->getQueryContext()->getPinnedStorageSnapshot(getStorageID().uuid)) >> 783 | return false; 784 | } 785 | return true; WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 1,024,017/1,173,301 -> current 1,024,599/1,173,497 (delta +582 / +196) Functions : baseline 834,842/908,258 -> current 834,907/908,267 (delta +65 / +9) Branches : baseline 337,825/425,756 -> current 338,191/425,858 (delta +366 / +102)