83.33% (15/18) Uncovered changed code (with context): ================================================================================ src/IO/parseDateTimeBestEffort.cpp ================================================================================ --- uncovered block 220-220 --- 218 | return on_error(ErrorCodes::CANNOT_PARSE_DATETIME, "Cannot read DateTime: unexpected fractional part"); 219 | } >> 220 | return ReturnType(true); 221 | } 222 | if (num_digits == 16 && !year && !has_time) --- uncovered block 236-236 --- 234 | return on_error(ErrorCodes::CANNOT_PARSE_DATETIME, "Cannot read DateTime: unexpected fractional part"); 235 | } >> 236 | return ReturnType(true); 237 | } 238 | if (num_digits == 19 && !year && !has_time) --- uncovered block 252-252 --- 250 | return on_error(ErrorCodes::CANNOT_PARSE_DATETIME, "Cannot read DateTime: unexpected fractional part"); 251 | } >> 252 | return ReturnType(true); 253 | } 254 | if (num_digits == 10 && !year && !has_time) === Lost Baseline Coverage: 4 lines === ================================================================================ src/IO/parseDateTimeBestEffort.cpp ================================================================================ --- lost coverage block 527-530 --- 525 | } 526 | else >> 527 | return on_error( >> 528 | ErrorCodes::CANNOT_PARSE_DATETIME, >> 529 | "Cannot read DateTime: unexpected number of decimal digits after day of month: {}", >> 530 | num_digits); 531 | } 532 | WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 766,975/912,576 -> current 766,974/912,602 (delta -1 / +26) Functions : baseline 884,235/967,509 -> current 884,242/967,517 (delta +7 / +8) Branches : baseline 250,282/327,082 -> current 250,303/327,098 (delta +21 / +16)