91.43% (32/35) Uncovered changed code (with context): ================================================================================ src/Storages/MergeTree/MergeTreeWhereOptimizer.cpp ================================================================================ --- uncovered block 603-603 --- 601 | /// disallow arrayJoin expressions to be moved to PREWHERE for now 602 | if (function_name == "arrayJoin") >> 603 | return true; 604 | 605 | /// Disallow GLOBAL IN conditions from being moved to PREWHERE. ================================================================================ src/Storages/VirtualColumnUtils.cpp ================================================================================ --- uncovered block 117-118 --- 115 | { 116 | /// The set is the second argument (index 1) >> 117 | if (node.children.size() >= 2) >> 118 | global_in_set_nodes.insert(node.children[1]); 119 | } 120 | } 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 755,557/898,804 -> current 755,284/898,847 (delta -273 / +43) Functions : baseline 830,404/911,475 -> current 830,372/911,476 (delta -32 / +1) Branches : baseline 245,409/320,464 -> current 245,339/320,498 (delta -70 / +34)