Changed-lines coverage: PR changed C/C++ lines covered by tests: 95.19% (99/104) Uncovered changed code (with context): ================================================================================ src/Parsers/FunctionSecretArgumentsFinder.cpp ================================================================================ --- uncovered block 851-851 --- 849 | void FunctionSecretArgumentsFinder::findExternalDistributedTableEngineSecretArguments() 850 | { >> 851 | if (isNamedCollectionName(1)) 852 | { 853 | /// ExternalDistributed('engine', named_collection, ..., password = 'password', ...) ================================================================================ src/Storages/NATS/StorageNATS.cpp ================================================================================ --- uncovered block 130-132 --- 128 | nats_credentials = getContext()->getConfigRef().getString("nats.credentials", ""); 129 | if (!nats_credential_file.empty() && !nats_credentials.empty()) >> 130 | throw Exception( >> 131 | ErrorCodes::BAD_ARGUMENTS, >> 132 | "You can specify only one of `nats.credential_file` and `nats.credentials` in the server configuration"); 133 | } 134 | --- uncovered block 900-900 --- 898 | } 899 | else if (!args.storage_def->settings) >> 900 | throw Exception(ErrorCodes::BAD_ARGUMENTS, "NATS engine must have settings"); 901 | 902 | nats_settings->loadFromQuery(*args.storage_def); WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 932,003/1,077,554 -> current 932,188/1,077,616 (delta +185 / +62) Functions : baseline 805,526/876,733 -> current 805,551/876,735 (delta +25 / +2) Branches : baseline 304,847/387,370 -> current 304,971/387,426 (delta +124 / +56)