-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathmanifest_evaluator.cc
More file actions
385 lines (341 loc) · 14.7 KB
/
manifest_evaluator.cc
File metadata and controls
385 lines (341 loc) · 14.7 KB
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "iceberg/expression/manifest_evaluator.h"
#include "iceberg/expression/binder.h"
#include "iceberg/expression/expression_visitor.h"
#include "iceberg/expression/projections.h"
#include "iceberg/expression/rewrite_not.h"
#include "iceberg/manifest/manifest_list.h"
#include "iceberg/row/struct_like.h"
#include "iceberg/schema.h"
#include "iceberg/util/macros.h"
namespace iceberg {
namespace {
constexpr bool kRowsMightMatch = true;
constexpr bool kRowCannotMatch = false;
constexpr int32_t kInPredicateLimit = 200;
} // namespace
class ManifestEvalVisitor : public BoundVisitor<bool> {
public:
explicit ManifestEvalVisitor(const ManifestFile& manifest)
: stats_(manifest.partitions) {}
Result<bool> AlwaysTrue() override { return kRowsMightMatch; }
Result<bool> AlwaysFalse() override { return kRowCannotMatch; }
Result<bool> Not(bool child_result) override { return !child_result; }
Result<bool> And(bool left_result, bool right_result) override {
return left_result && right_result;
}
Result<bool> Or(bool left_result, bool right_result) override {
return left_result || right_result;
}
Result<bool> IsNull(const std::shared_ptr<Bound>& expr) override {
// no need to check whether the field is required because binding evaluates that case
// if the column has no null values, the expression cannot match
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
if (!stats_.at(pos).contains_null) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> NotNull(const std::shared_ptr<Bound>& expr) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
if (AllValuesAreNull(stats_.at(pos), ref->type()->type_id())) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> IsNaN(const std::shared_ptr<Bound>& expr) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
if (stats_.at(pos).contains_nan.has_value() && !stats_.at(pos).contains_nan.value()) {
return kRowCannotMatch;
}
if (AllValuesAreNull(stats_.at(pos), ref->type()->type_id())) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> NotNaN(const std::shared_ptr<Bound>& expr) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
// if containsNaN is true, containsNull is false and lowerBound is null, all values
// are NaN
if (summary.contains_nan.has_value() && summary.contains_nan.value() &&
!summary.contains_null && !summary.lower_bound.has_value()) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> Lt(const std::shared_ptr<Bound>& expr, const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.lower_bound.has_value()) {
return kRowCannotMatch; // values are all null
}
ICEBERG_ASSIGN_OR_RAISE(
auto lower, DeserializeBoundLiteral(summary.lower_bound.value(), ref->type()));
if (lower >= lit) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> LtEq(const std::shared_ptr<Bound>& expr, const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.lower_bound.has_value()) {
return kRowCannotMatch; // values are all null
}
ICEBERG_ASSIGN_OR_RAISE(
auto lower, DeserializeBoundLiteral(summary.lower_bound.value(), ref->type()));
if (lower > lit) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> Gt(const std::shared_ptr<Bound>& expr, const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.upper_bound.has_value()) {
return kRowCannotMatch; // values are all null
}
ICEBERG_ASSIGN_OR_RAISE(
auto upper, DeserializeBoundLiteral(summary.upper_bound.value(), ref->type()));
if (upper <= lit) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> GtEq(const std::shared_ptr<Bound>& expr, const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.upper_bound.has_value()) {
return kRowCannotMatch; // values are all null
}
ICEBERG_ASSIGN_OR_RAISE(
auto upper,
DeserializeBoundLiteral(summary.upper_bound.value(), expr->reference()->type()));
if (upper < lit) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> Eq(const std::shared_ptr<Bound>& expr, const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.lower_bound.has_value() || !summary.upper_bound.has_value()) {
return kRowCannotMatch; // values are all null and literal cannot contain null
}
ICEBERG_ASSIGN_OR_RAISE(
auto lower, DeserializeBoundLiteral(summary.lower_bound.value(), ref->type()));
if (lower > lit) {
return kRowCannotMatch;
}
ICEBERG_ASSIGN_OR_RAISE(
auto upper, DeserializeBoundLiteral(summary.upper_bound.value(), ref->type()));
if (upper < lit) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> NotEq([[maybe_unused]] const std::shared_ptr<Bound>& expr,
[[maybe_unused]] const Literal& lit) override {
// because the bounds are not necessarily a min or max value, this cannot be answered
// using them. notEq(col, X) with (X, Y) doesn't guarantee that X is a value in col.
return kRowsMightMatch;
}
Result<bool> In(const std::shared_ptr<Bound>& expr,
const BoundSetPredicate::LiteralSet& literal_set) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.lower_bound.has_value() || !summary.upper_bound.has_value()) {
// values are all null and literalSet cannot contain null.
return kRowCannotMatch;
}
if (literal_set.size() > kInPredicateLimit) {
// skip evaluating the predicate if the number of values is too big
return kRowsMightMatch;
}
ICEBERG_ASSIGN_OR_RAISE(
auto lower, DeserializeBoundLiteral(summary.lower_bound.value(), ref->type()));
ICEBERG_ASSIGN_OR_RAISE(
auto upper, DeserializeBoundLiteral(summary.upper_bound.value(), ref->type()));
if (std::ranges::all_of(literal_set, [&](const Literal& lit) {
return lit < lower || lit > upper;
})) {
// if all values are less than lower bound or greater than upper bound,
// rows cannot match.
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> NotIn(
[[maybe_unused]] const std::shared_ptr<Bound>& expr,
[[maybe_unused]] const BoundSetPredicate::LiteralSet& literal_set) override {
// because the bounds are not necessarily a min or max value, this cannot be answered
// using them. notIn(col, {X, ...}) with (X, Y) doesn't guarantee that X is a value in
// col.
return kRowsMightMatch;
}
Result<bool> StartsWith(const std::shared_ptr<Bound>& expr,
const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (!summary.lower_bound.has_value() || !summary.upper_bound.has_value()) {
return kRowCannotMatch;
}
if (lit.type()->type_id() != TypeId::kString) {
return InvalidExpression("Invalid literal: not a string, cannot use StartsWith");
}
const auto& prefix = std::get<std::string>(lit.value());
ICEBERG_ASSIGN_OR_RAISE(
auto lower, DeserializeBoundLiteral(summary.lower_bound.value(), ref->type()));
ICEBERG_ASSIGN_OR_RAISE(
auto upper, DeserializeBoundLiteral(summary.upper_bound.value(), ref->type()));
const auto& lower_bound = std::get<std::string>(lower.value());
const auto& upper_bound = std::get<std::string>(upper.value());
// truncate lower bound so that its length in bytes is not greater than the length of
// prefix
size_t length = std::min(prefix.size(), lower_bound.size());
if (lower_bound.substr(0, length) > prefix) {
return kRowCannotMatch;
}
length = std::min(prefix.size(), upper_bound.size());
if (upper_bound.substr(0, length) < prefix) {
return kRowCannotMatch;
}
return kRowsMightMatch;
}
Result<bool> NotStartsWith(const std::shared_ptr<Bound>& expr,
const Literal& lit) override {
const auto& ref = expr->reference();
ICEBERG_ASSIGN_OR_RAISE(auto pos, GetPosition(*ref));
const auto& summary = stats_.at(pos);
if (summary.contains_null || !summary.lower_bound.has_value() ||
!summary.upper_bound.has_value()) {
return kRowsMightMatch;
}
if (lit.type()->type_id() != TypeId::kString) {
return InvalidExpression("Invalid literal: not a string, cannot use notStartsWith");
}
// notStartsWith will match unless all values must start with the prefix. This happens
// when the lower and upper bounds both start with the prefix.
const auto& prefix = std::get<std::string>(lit.value());
ICEBERG_ASSIGN_OR_RAISE(
auto lower, DeserializeBoundLiteral(summary.lower_bound.value(), ref->type()));
ICEBERG_ASSIGN_OR_RAISE(
auto upper, DeserializeBoundLiteral(summary.upper_bound.value(), ref->type()));
const auto& lower_bound = std::get<std::string>(lower.value());
const auto& upper_bound = std::get<std::string>(upper.value());
// if lower is shorter than the prefix, it can't start with the prefix
if (lower_bound.size() < prefix.size()) {
return kRowsMightMatch;
}
if (lower_bound.starts_with(prefix)) {
// the lower bound starts with the prefix; check the upper bound
// if upper is shorter than the prefix, it can't start with the prefix
if (upper_bound.size() < prefix.size()) {
return kRowsMightMatch;
}
// truncate upper bound so that its length in bytes is not greater than the length
// of prefix
if (upper_bound.starts_with(prefix)) {
return kRowCannotMatch;
}
}
return kRowsMightMatch;
}
private:
Result<size_t> GetPosition(const BoundReference& ref) const {
const auto& accessor = ref.accessor();
const auto& position_path = accessor.position_path();
if (position_path.empty()) {
return InvalidArgument("Invalid accessor: empty position path.");
}
// nested accessors are not supported for partition fields
if (position_path.size() > 1) {
return InvalidArgument("Cannot convert nested accessor to position");
}
auto pos = position_path.at(0);
if (pos >= stats_.size()) {
return InvalidArgument("Position {} is out of partition field range {}", pos,
stats_.size());
}
return pos;
}
bool AllValuesAreNull(const PartitionFieldSummary& summary, TypeId typeId) {
// containsNull encodes whether at least one partition value is null,
// lowerBound is null if all partition values are null
bool allNull = summary.contains_null && !summary.lower_bound.has_value();
if (allNull && (typeId == TypeId::kDouble || typeId == TypeId::kFloat)) {
// floating point types may include NaN values, which we check separately.
// In case bounds don't include NaN value, containsNaN needs to be checked against.
allNull = summary.contains_nan.has_value() && !summary.contains_nan.value();
}
return allNull;
}
Result<Literal> DeserializeBoundLiteral(const std::vector<uint8_t>& bound,
const std::shared_ptr<Type>& type) const {
if (!type->is_primitive()) {
return NotSupported("Bounds of non-primitive partition fields are not supported.");
}
return Literal::Deserialize(bound,
internal::checked_pointer_cast<PrimitiveType>(type));
}
private:
const std::vector<PartitionFieldSummary>& stats_;
};
ManifestEvaluator::ManifestEvaluator(std::shared_ptr<Expression> expr)
: expr_(std::move(expr)) {}
ManifestEvaluator::~ManifestEvaluator() = default;
Result<std::unique_ptr<ManifestEvaluator>> ManifestEvaluator::MakeRowFilter(
std::shared_ptr<Expression> expr, const std::shared_ptr<PartitionSpec>& spec,
const Schema& schema, bool case_sensitive) {
auto projection_valuator = Projections::Inclusive(*spec, schema, case_sensitive);
ICEBERG_ASSIGN_OR_RAISE(auto partition_expr, projection_valuator->Project(expr));
return MakePartitionFilter(partition_expr, spec, schema, case_sensitive);
}
Result<std::unique_ptr<ManifestEvaluator>> ManifestEvaluator::MakePartitionFilter(
std::shared_ptr<Expression> expr, const std::shared_ptr<PartitionSpec>& spec,
const Schema& schema, bool case_sensitive) {
ICEBERG_ASSIGN_OR_RAISE(auto partition_type, spec->PartitionType(schema));
ICEBERG_ASSIGN_OR_RAISE(auto rewrite_expr, RewriteNot::Visit(std::move(expr)));
ICEBERG_ASSIGN_OR_RAISE(
auto partition_expr,
Binder::Bind(*partition_type->ToSchema(), rewrite_expr, case_sensitive));
return std::unique_ptr<ManifestEvaluator>(
new ManifestEvaluator(std::move(partition_expr)));
}
Result<bool> ManifestEvaluator::Evaluate(const ManifestFile& manifest) const {
if (manifest.partitions.empty()) {
return kRowsMightMatch;
}
ManifestEvalVisitor visitor(manifest);
return Visit<bool, ManifestEvalVisitor>(expr_, visitor);
}
} // namespace iceberg