Changed-lines coverage: PR changed C/C++ lines covered by tests: 84.38% (27/32) Uncovered changed code (with context): ================================================================================ src/Common/ThreadStatus.cpp ================================================================================ --- uncovered block 267-267 --- 265 | if (local_data.query_is_canceled_predicate) 266 | return local_data.query_is_canceled_predicate(); >> 267 | return false; 268 | } 269 | ================================================================================ src/Interpreters/ThreadStatusExt.cpp ================================================================================ --- uncovered block 163-170 --- 161 | return context_locked->isCurrentQueryKilled(); 162 | } >> 163 | return false; 164 | }; 165 | shared_data.throw_if_query_canceled_predicate = [this] () 166 | { >> 167 | if (auto context_locked = query_context.lock()) 168 | { >> 169 | if (auto elem = context_locked->getProcessListElementSafe()) >> 170 | elem->throwIfKilled(); 171 | } 172 | }; WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 869,255/1,015,033 -> current 868,808/1,015,067 (delta -447 / +34) Functions : baseline 945,209/1,020,013 -> current 945,187/1,020,018 (delta -22 / +5) Branches : baseline 279,232/358,872 -> current 279,244/358,888 (delta +12 / +16)