We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dbb8b2 commit cfdab89Copy full SHA for cfdab89
src/Processors/QueryPlan/ReadFromMergeTree.cpp
@@ -2512,7 +2512,7 @@ ReadFromMergeTree::AnalysisResultPtr ReadFromMergeTree::selectRangesToRead(
2512
result_parts_ranges.push_back(part_range_info);
2513
}
2514
2515
- /// Parts should be sorted by part_index_in_query for QCC
+ /// Parts should be sorted by part_index_in_query for Query Condition Cache
2516
std::sort(result_parts_ranges.begin(), result_parts_ranges.end(),
2517
[](const auto & a, const auto & b) { return a.part_index_in_query < b.part_index_in_query; });
2518
0 commit comments