80.43% (37/46) Uncovered changed code (with context): ================================================================================ src/Interpreters/InterpreterSystemQuery.cpp ================================================================================ --- uncovered block 1725-1726 --- 1723 | /*zookeeper_path_=*/zookeeper_path, 1724 | /*node_name=*/table_name, >> 1725 | /*query=*/create_query_string); >> 1726 | auto create_query_context = make_create_context(); 1727 | 1728 | { --- uncovered block 1729-1730 --- 1727 | 1728 | { >> 1729 | SelectIntersectExceptQueryVisitor::Data data{create_query_context->getSettingsRef()[Setting::intersect_default_mode], create_query_context->getSettingsRef()[Setting::except_default_mode]}; >> 1730 | SelectIntersectExceptQueryVisitor{data}.visit(query_ast); 1731 | } 1732 | { --- uncovered block 1733-1734 --- 1731 | } 1732 | { >> 1733 | NormalizeSelectWithUnionQueryVisitor::Data data{create_query_context->getSettingsRef()[Setting::union_default_mode]}; >> 1734 | NormalizeSelectWithUnionQueryVisitor{data}.visit(query_ast); 1735 | } 1736 | --- uncovered block 1737-1738 --- 1735 | } 1736 | >> 1737 | LOG_INFO(log, "Restoring {}", query_ast->formatForLogging()); >> 1738 | InterpreterCreateQuery(query_ast, create_query_context).execute(); 1739 | } 1740 | } ================================================================================ src/Storages/StorageView.cpp ================================================================================ --- uncovered block 507-507 --- 505 | { 506 | if (args.query.storage) >> 507 | throw Exception(ErrorCodes::INCORRECT_QUERY, "Specifying ENGINE is not allowed for a View"); 508 | 509 | /// Resolve INTERSECT/EXCEPT precedence before constructing StorageView. 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 750,897/896,241 -> current 751,309/896,280 (delta +412 / +39) Functions : baseline 830,049/911,117 -> current 830,052/911,117 (delta +3 / +0) Branches : baseline 243,508/319,434 -> current 243,680/319,436 (delta +172 / +2)