Changed-lines coverage: PR changed C/C++ lines covered by tests: 95.83% (46/48) Uncovered changed code (with context): ================================================================================ src/Processors/QueryPlan/Optimizations/Utils.cpp ================================================================================ --- uncovered block 166-166 --- 164 | const auto * filter_node = filter_dag.tryFindInOutputs(filter_column_name); 165 | if (!filter_node) >> 166 | return FilterResult::UNKNOWN; 167 | 168 | ActionsDAG::NodeRawConstPtrs targets = {filter_node}; --- uncovered block 186-186 --- 184 | { 185 | /// If we cannot evaluate the filter expression, return UNKNOWN >> 186 | return FilterResult::UNKNOWN; 187 | } 188 | WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 894,755/1,040,025 -> current 895,167/1,040,051 (delta +412 / +26) Functions : baseline 837,639/912,540 -> current 837,664/912,542 (delta +25 / +2) Branches : baseline 289,496/370,498 -> current 289,755/370,508 (delta +259 / +10)