Changed-lines coverage: PR changed C/C++ lines covered by tests: 96.23% (51/53) Uncovered changed code (with context): ================================================================================ src/Functions/FunctionHelpers.cpp ================================================================================ --- uncovered block 33-39 --- 31 | if (auto query_context = CurrentThread::tryGetQueryContext()) 32 | return query_context->getProcessListElementSafe(); >> 33 | return {}; 34 | } 35 | 36 | void checkQueryCancellation(const QueryStatusPtr & query_status, std::string_view function_name) 37 | { 38 | if (query_status && !query_status->checkTimeLimit()) >> 39 | throw Exception(ErrorCodes::TIMEOUT_EXCEEDED, "Timeout exceeded: elapsed time limit reached in function {}", function_name); 40 | } 41 | WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 939,005/1,085,191 -> current 938,872/1,085,223 (delta -133 / +32) Functions : baseline 807,107/878,523 -> current 807,073/878,532 (delta -34 / +9) Branches : baseline 308,015/391,058 -> current 307,961/391,070 (delta -54 / +12)