98.81% (166/168) Uncovered changed code (with context): ================================================================================ src/Functions/hasPhrase.h ================================================================================ --- uncovered block 52-52 --- 50 | const DataTypes & getArgumentTypes() const override { return argument_types; } 51 | const DataTypePtr & getResultType() const override { return result_type; } >> 52 | bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo &) const override { return true; } 53 | 54 | ExecutableFunctionPtr prepare(const ColumnsWithTypeAndName &) const override; --- uncovered block 76-76 --- 74 | 75 | String getName() const override { return name; } >> 76 | size_t getNumberOfArguments() const override { return 0; } 77 | bool isVariadic() const override { return true; } 78 | ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {1, 2}; } No lost baseline coverage found. WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 740,874/882,039 → current 741,312/882,206 (Δ +438 / +167) Functions : baseline 798,568/878,785 → current 798,617/878,841 (Δ +49 / +56) Branches : baseline 240,245/314,010 → current 240,412/314,050 (Δ +167 / +40)