Skip to content

Commit cc33163

Browse files
committed
Rebase
1 parent 47060ee commit cc33163

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Processors/QueryPlan/Optimizations/projectionsCommon.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,10 @@ void filterPartsUsingProjection(
340340
if (it != created_projections.end() && !it->second->is_broken)
341341
{
342342
RangesInDataPart projection_part(
343-
it->second, part_with_ranges.part_index_in_query, part_with_ranges.part_starting_offset_in_query);
343+
it->second,
344+
part_with_ranges.data_part,
345+
part_with_ranges.part_index_in_query,
346+
part_with_ranges.part_starting_offset_in_query);
344347
projection_parts.push_back(std::move(projection_part));
345348
}
346349
else

0 commit comments

Comments
 (0)