Changed-lines coverage: PR changed C/C++ lines covered by tests: 61.11% (11/18) Uncovered changed code (with context): ================================================================================ src/AggregateFunctions/AggregateFunctionFactory.cpp ================================================================================ --- uncovered block 178-188 --- 176 | if (auto it = respect_nulls.find(name); it != respect_nulls.end()) 177 | return it->second; >> 178 | if (auto it = respect_nulls.find(Poco::toLower(name)); it != respect_nulls.end()) >> 179 | return it->second; >> 180 | throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Function {} does not support RESPECT NULLS", name); 181 | } 182 | 183 | if (action == NullsAction::IGNORE_NULLS) 184 | { >> 185 | if (auto it = ignore_nulls.find(name); it != ignore_nulls.end()) >> 186 | return it->second; >> 187 | if (auto it = ignore_nulls.find(Poco::toLower(name)); it != ignore_nulls.end()) >> 188 | return it->second; 189 | /// IGNORE NULLS is the default for functions without an explicit transform. 190 | } WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 895,963/1,041,022 -> current 896,149/1,041,058 (delta +186 / +36) Functions : baseline 837,776/912,747 -> current 837,832/912,748 (delta +56 / +1) Branches : baseline 290,160/371,020 -> current 290,306/371,040 (delta +146 / +20)