================================================================================ Changed-lines coverage summary ================================================================================ Denominator: lines added/modified by this PR in C/C++ source files that LCOV considers coverable (excludes blank lines, braces, comments, header-only declarations, and error-path noise such as `LOGICAL_ERROR`, `UNREACHABLE()`, `abort()`). Numerator: of those coverable lines, the number actually executed by the test suite during this coverage run. PR changed C/C++ lines covered by tests: 100.00% (66/66) No uncovered changed lines found. === Lost Baseline Coverage: 4 lines === ================================================================================ src/Interpreters/TableJoin.cpp ================================================================================ --- lost coverage block 577-580 --- 575 | } 576 | else >> 577 | throw Exception(ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK, >> 578 | "Column {} not found in JOIN, left columns: [{}], right columns: [{}]", column_name, >> 579 | fmt::join(columns_from_left_table | std::views::transform([](const auto & col) { return col.name; }), ", "), >> 580 | fmt::join(columns_from_joined_table | std::views::transform([](const auto & col) { return col.name; }), ", ")); 581 | } 582 | } WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 830,063/973,723 -> current 829,330/973,722 (delta -733 / -1) Functions : baseline 897,986/972,664 -> current 897,963/972,664 (delta -23 / +0) Branches : baseline 263,515/340,170 -> current 263,218/340,170 (delta -297 / +0)