Changed-lines coverage: PR changed C/C++ lines covered by tests: 72.41% (21/29) Uncovered changed code (with context): ================================================================================ src/Interpreters/FileCache/FileSegment.cpp ================================================================================ --- uncovered block 545-556 --- 543 | catch (const fs::filesystem_error & e) 544 | { >> 545 | auto lk = lock(); >> 546 | setDownloadFailedUnlocked(lk); 547 | >> 548 | if (downloaded_size == 0) 549 | { >> 550 | std::error_code ec; >> 551 | fs::remove(file_segment_path, ec); 552 | } 553 | >> 554 | throw ErrnoException(e.code().value(), >> 555 | "Filesystem error in cache write ({}), current cache state: {}", >> 556 | e.what(), getInfoForLogUnlocked(lk)); 557 | } 558 | WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 890,252/1,036,963 -> current 890,373/1,036,978 (delta +121 / +15) Functions : baseline 951,798/1,026,792 -> current 951,764/1,026,794 (delta -34 / +2) Branches : baseline 288,205/369,344 -> current 288,241/369,352 (delta +36 / +8)