1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
#include <Processors/QueryPlan/Optimizations/projectionsCommon.h>
#include <Processors/QueryPlan/ExpressionStep.h>
#include <Processors/QueryPlan/FilterStep.h>
#include <Processors/QueryPlan/ReadFromMergeTree.h>
#include <Common/logger_useful.h>
#include <DataTypes/DataTypeNullable.h>
#include <Functions/IFunctionAdaptors.h>
#include <Functions/FunctionsLogical.h>
#include <Interpreters/InterpreterSelectQuery.h>
#include <Storages/StorageReplicatedMergeTree.h>
namespace DB
{
namespace ErrorCodes
{
extern const int ILLEGAL_TYPE_OF_COLUMN_FOR_FILTER;
}
namespace QueryPlanOptimizations
{
bool canUseProjectionForReadingStep(ReadFromMergeTree * reading)
{
/// Probably some projection already was applied.
if (reading->hasAnalyzedResult())
return false;
if (reading->isQueryWithFinal())
return false;
if (reading->isQueryWithSampling())
return false;
if (reading->isParallelReadingEnabled())
return false;
if (reading->readsInOrder())
return false;
// Currently projection don't support deduplication when moving parts between shards.
if (reading->getContext()->getSettingsRef().allow_experimental_query_deduplication)
return false;
// Currently projection don't support settings which implicitly modify aggregate functions.
if (reading->getContext()->getSettingsRef().aggregate_functions_null_for_empty)
return false;
return true;
}
std::shared_ptr<PartitionIdToMaxBlock> getMaxAddedBlocks(ReadFromMergeTree * reading)
{
ContextPtr context = reading->getContext();
if (context->getSettingsRef().select_sequential_consistency)
{
if (const auto * replicated = dynamic_cast<const StorageReplicatedMergeTree *>(&reading->getMergeTreeData()))
return std::make_shared<PartitionIdToMaxBlock>(replicated->getMaxAddedBlocks());
}
return {};
}
void QueryDAG::appendExpression(const ActionsDAGPtr & expression)
{
if (dag)
dag->mergeInplace(std::move(*expression->clone()));
else
dag = expression->clone();
}
const ActionsDAG::Node * findInOutputs(ActionsDAG & dag, const std::string & name, bool remove)
{
auto & outputs = dag.getOutputs();
for (auto it = outputs.begin(); it != outputs.end(); ++it)
{
if ((*it)->result_name == name)
{
const auto * node = *it;
/// We allow to use Null as a filter.
/// In this case, result is empty. Ignore optimizations.
if (node->result_type->onlyNull())
return nullptr;
if (!isUInt8(removeNullable(removeLowCardinality(node->result_type))))
throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_COLUMN_FOR_FILTER,
"Illegal type {} of column {} for filter. Must be UInt8 or Nullable(UInt8).",
node->result_type->getName(), name);
if (remove)
{
outputs.erase(it);
}
else
{
ColumnWithTypeAndName col;
col.name = node->result_name;
col.type = node->result_type;
col.column = col.type->createColumnConst(1, 1);
*it = &dag.addColumn(std::move(col));
}
return node;
}
}
return nullptr;
}
bool QueryDAG::buildImpl(QueryPlan::Node & node, ActionsDAG::NodeRawConstPtrs & filter_nodes)
{
IQueryPlanStep * step = node.step.get();
if (auto * reading = typeid_cast<ReadFromMergeTree *>(step))
{
if (const auto & prewhere_info = reading->getPrewhereInfo())
{
if (prewhere_info->row_level_filter)
{
appendExpression(prewhere_info->row_level_filter);
if (const auto * filter_expression = findInOutputs(*dag, prewhere_info->row_level_column_name, false))
filter_nodes.push_back(filter_expression);
else
return false;
}
if (prewhere_info->prewhere_actions)
{
appendExpression(prewhere_info->prewhere_actions);
if (const auto * filter_expression
= findInOutputs(*dag, prewhere_info->prewhere_column_name, prewhere_info->remove_prewhere_column))
filter_nodes.push_back(filter_expression);
else
return false;
}
}
return true;
}
if (node.children.size() != 1)
return false;
if (!buildImpl(*node.children.front(), filter_nodes))
return false;
if (auto * expression = typeid_cast<ExpressionStep *>(step))
{
const auto & actions = expression->getExpression();
if (actions->hasArrayJoin())
return false;
appendExpression(actions);
return true;
}
if (auto * filter = typeid_cast<FilterStep *>(step))
{
const auto & actions = filter->getExpression();
if (actions->hasArrayJoin())
return false;
appendExpression(actions);
const auto * filter_expression = findInOutputs(*dag, filter->getFilterColumnName(), filter->removesFilterColumn());
if (!filter_expression)
return false;
filter_nodes.push_back(filter_expression);
return true;
}
return false;
}
bool QueryDAG::build(QueryPlan::Node & node)
{
ActionsDAG::NodeRawConstPtrs filter_nodes;
if (!buildImpl(node, filter_nodes))
return false;
if (!filter_nodes.empty())
{
filter_node = filter_nodes.back();
if (filter_nodes.size() > 1)
{
/// Add a conjunction of all the filters.
FunctionOverloadResolverPtr func_builder_and =
std::make_unique<FunctionToOverloadResolverAdaptor>(
std::make_shared<FunctionAnd>());
filter_node = &dag->addFunction(func_builder_and, std::move(filter_nodes), {});
}
else
filter_node = &dag->addAlias(*filter_node, "_projection_filter");
auto & outputs = dag->getOutputs();
outputs.insert(outputs.begin(), filter_node);
}
return true;
}
bool analyzeProjectionCandidate(
ProjectionCandidate & candidate,
const ReadFromMergeTree & reading,
const MergeTreeDataSelectExecutor & reader,
const Names & required_column_names,
const MergeTreeData::DataPartsVector & parts,
const StorageMetadataPtr & metadata,
const SelectQueryInfo & query_info,
const ContextPtr & context,
const std::shared_ptr<PartitionIdToMaxBlock> & max_added_blocks,
const ActionDAGNodes & added_filter_nodes)
{
MergeTreeData::DataPartsVector projection_parts;
MergeTreeData::DataPartsVector normal_parts;
for (const auto & part : parts)
{
const auto & created_projections = part->getProjectionParts();
auto it = created_projections.find(candidate.projection->name);
if (it != created_projections.end())
projection_parts.push_back(it->second);
else
normal_parts.push_back(part);
}
if (projection_parts.empty())
return false;
auto projection_result_ptr = reader.estimateNumMarksToRead(
std::move(projection_parts),
nullptr,
required_column_names,
metadata,
candidate.projection->metadata,
query_info, /// How it is actually used? I hope that for index we need only added_filter_nodes
added_filter_nodes,
context,
context->getSettingsRef().max_threads,
max_added_blocks);
if (projection_result_ptr->error())
return false;
candidate.merge_tree_projection_select_result_ptr = std::move(projection_result_ptr);
candidate.sum_marks += candidate.merge_tree_projection_select_result_ptr->marks();
if (!normal_parts.empty())
{
auto normal_result_ptr = reading.selectRangesToRead(std::move(normal_parts), /* alter_conversions = */ {});
if (normal_result_ptr->error())
return false;
if (normal_result_ptr->marks() != 0)
{
candidate.sum_marks += normal_result_ptr->marks();
candidate.merge_tree_ordinary_select_result_ptr = std::move(normal_result_ptr);
}
}
return true;
}
}
}
|