Changed-lines coverage: PR changed C/C++ lines covered by tests: 98.25% (168/171) Uncovered changed code (with context): ================================================================================ src/Storages/PostgreSQL/PostgreSQLSettings.cpp ================================================================================ --- uncovered block 46-50 --- 44 | } 45 | >> 46 | PostgreSQLSettings::PostgreSQLSettings(const PostgreSQLSettings & settings) : impl(std::make_unique(*settings.impl)) 47 | { 48 | } 49 | >> 50 | PostgreSQLSettings::PostgreSQLSettings(PostgreSQLSettings && settings) noexcept = default; 51 | 52 | PostgreSQLSettings::~PostgreSQLSettings() = default; ================================================================================ src/TableFunctions/TableFunctionPostgreSQL.cpp ================================================================================ --- uncovered block 100-100 --- 98 | const auto & func_args = ast_function->as(); 99 | if (!func_args.arguments) >> 100 | throw Exception(ErrorCodes::BAD_ARGUMENTS, "Table function 'PostgreSQL' must have arguments."); 101 | 102 | /// The connection-pool parameters are seeded from the query-level `postgresql_*` settings WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 892,549/1,037,980 -> current 892,655/1,038,126 (delta +106 / +146) Functions : baseline 952,030/1,026,919 -> current 952,093/1,027,003 (delta +63 / +84) Branches : baseline 288,857/369,714 -> current 288,912/369,752 (delta +55 / +38)