94.19% (81/86) Uncovered changed code (with context): ================================================================================ src/Server/PrometheusRequestHandler.cpp ================================================================================ --- uncovered block 263-263 --- 261 | 262 | if (table.empty()) >> 263 | table = "prometheus"; 264 | 265 | if (database.empty()) --- uncovered block 270-270 --- 268 | database = handler_config.default_database_from_xml; 269 | else >> 270 | database = "default"; 271 | } 272 | --- uncovered block 316-316 --- 314 | 315 | if (!write_request.ParsePartialFromZeroCopyStream(&zero_copy_input_stream)) >> 316 | throw Exception(ErrorCodes::BAD_ARGUMENTS, "Cannot parse WriteRequest"); 317 | } 318 | ================================================================================ src/Server/PrometheusRequestHandlerFactory.cpp ================================================================================ --- uncovered block 79-79 --- 77 | res = QualifiedTableName::parseFromString(res.table); 78 | if (res.database.empty()) >> 79 | res.database = "default"; 80 | return res; 81 | } --- uncovered block 285-285 --- 283 | return parseExposeMetricsConfig(config, handler_config_prefix); 284 | } >> 285 | return parseHandlerConfig(config, handler_config_prefix); 286 | }(); 287 | 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 766,143/910,981 -> current 766,220/911,054 (delta +77 / +73) Functions : baseline 831,643/904,205 -> current 831,680/904,212 (delta +37 / +7) Branches : baseline 249,642/326,198 -> current 249,664/326,248 (delta +22 / +50)