Coverage Report

Created: 2026-06-30 21:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exprs/vdirect_in_predicate.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <utility>
21
#include <vector>
22
23
#include "common/logging.h"
24
#include "common/status.h"
25
#include "core/field.h"
26
#include "core/types.h"
27
#include "exprs/expr_zonemap_filter.h"
28
#include "exprs/hybrid_set.h"
29
#include "exprs/vexpr.h"
30
#include "exprs/vin_predicate.h"
31
#include "exprs/vliteral.h"
32
#include "exprs/vslot_ref.h"
33
34
namespace doris {
35
36
class VDirectInPredicate final : public VExpr {
37
    ENABLE_FACTORY_CREATOR(VDirectInPredicate);
38
39
public:
40
    // `hybrid_set_values_match_child_type` tells whether values in `filter` can be interpreted with
41
    // the child expression type. Parquet/ORC dictionary-filter rewrites evaluate the original
42
    // logical predicate against dictionary entries and then rewrite it to matched physical
43
    // dictionary codes, for example `col IN ('a', 'b')` becomes `dict_code IN (0, 1)`. In that
44
    // shape the HybridSet stores TYPE_INT dictionary codes while the child slot still has the
45
    // original logical type such as STRING. Callers must pass false to disable zonemap
46
    // materialization and slot-IN rewrite that would otherwise rebuild child-typed literals from
47
    // dictionary codes.
48
    VDirectInPredicate(const TExprNode& node, const std::shared_ptr<HybridSetBase>& filter,
49
                       bool hybrid_set_values_match_child_type)
50
48
            : VExpr(node),
51
48
              _filter(filter),
52
48
              _hybrid_set_values_match_child_type(hybrid_set_values_match_child_type),
53
48
              _expr_name("direct_in_predicate") {}
54
52
    ~VDirectInPredicate() override = default;
55
56
#ifdef BE_TEST
57
4
    VDirectInPredicate() = default;
58
#endif
59
60
    Status prepare(RuntimeState* state, const RowDescriptor& row_desc,
61
3
                   VExprContext* context) override {
62
3
        RETURN_IF_ERROR_OR_PREPARED(VExpr::prepare(state, row_desc, context));
63
3
        RETURN_IF_ERROR(_materialize_for_zonemap_filter());
64
3
        _prepare_finished = true;
65
3
        return Status::OK();
66
3
    }
67
68
    Status open(RuntimeState* state, VExprContext* context,
69
2
                FunctionContext::FunctionStateScope scope) override {
70
2
        DCHECK(_prepare_finished);
71
2
        RETURN_IF_ERROR(VExpr::open(state, context, scope));
72
2
        _open_finished = true;
73
2
        return Status::OK();
74
2
    }
75
76
    Status execute_column_impl(VExprContext* context, const Block* block, const Selector* selector,
77
0
                               size_t count, ColumnPtr& result_column) const override {
78
0
        return _do_execute(context, block, nullptr, selector, count, result_column, nullptr);
79
0
    }
80
81
    Status execute_runtime_filter(VExprContext* context, const Block* block,
82
                                  const uint8_t* __restrict filter, size_t count,
83
0
                                  ColumnPtr& result_column, ColumnPtr* arg_column) const override {
84
0
        return _do_execute(context, block, filter, nullptr, count, result_column, arg_column);
85
0
    }
86
87
2
    const std::string& expr_name() const override { return _expr_name; }
88
89
61
    std::shared_ptr<HybridSetBase> get_set_func() const override { return _filter; }
90
91
1
    ZoneMapFilterResult evaluate_zonemap_filter(const ZoneMapEvalContext& ctx) const override {
92
1
        return expr_zonemap::eval_in_zonemap(ctx, get_child(0), false, _seg_filter_values,
93
1
                                             _seg_filter_min, _seg_filter_max);
94
1
    }
95
96
2
    bool can_evaluate_zonemap_filter() const override {
97
2
        return _zonemap_materialized &&
98
2
               std::dynamic_pointer_cast<VSlotRef>(get_child(0)) != nullptr;
99
2
    }
100
101
6
    bool get_slot_in_expr(VExprSPtr& new_root) const {
102
6
        if (!_hybrid_set_values_match_child_type) {
103
1
            return false;
104
1
        }
105
5
        if (!get_child(0)->is_slot_ref()) {
106
0
            return false;
107
0
        }
108
109
5
        auto* slot_ref = assert_cast<VSlotRef*>(get_child(0).get());
110
5
        auto slot_data_type = remove_nullable(slot_ref->data_type());
111
5
        {
112
5
            TTypeDesc type_desc = create_type_desc(PrimitiveType::TYPE_BOOLEAN);
113
5
            TExprNode node;
114
5
            node.__set_type(type_desc);
115
5
            node.__set_node_type(TExprNodeType::IN_PRED);
116
5
            node.in_predicate.__set_is_not_in(false);
117
5
            node.__set_opcode(TExprOpcode::FILTER_IN);
118
            // VdirectInPredicate assume is_nullable = false.
119
5
            node.__set_is_nullable(false);
120
5
            new_root = VInPredicate::create_shared(node);
121
5
        }
122
5
        {
123
            // add slot
124
5
            new_root->add_child(children().at(0));
125
5
        }
126
5
        {
127
5
            auto iter = get_set_func()->begin();
128
17
            while (iter->has_next()) {
129
12
                DCHECK(iter->get_value() != nullptr);
130
12
                const void* value = iter->get_value();
131
132
12
                TExprNode node = expr_zonemap::create_texpr_node_from_hybrid_set_value(
133
12
                        value, slot_data_type->get_primitive_type(),
134
12
                        slot_data_type->get_precision(), slot_data_type->get_scale());
135
12
                new_root->add_child(VLiteral::create_shared(node));
136
12
                iter->next();
137
12
            }
138
5
        }
139
5
        return true;
140
5
    }
141
142
0
    uint64_t get_digest(uint64_t seed) const override {
143
0
        seed = _children[0]->get_digest(seed);
144
0
        if (seed) {
145
0
            return _filter->get_digest(seed);
146
0
        }
147
0
        return seed;
148
0
    }
149
150
private:
151
    Status _do_execute(VExprContext* context, const Block* block, const uint8_t* __restrict filter,
152
                       const Selector* selector, size_t count, ColumnPtr& result_column,
153
0
                       ColumnPtr* arg_column) const {
154
0
        DCHECK(_open_finished || block == nullptr);
155
0
        DCHECK(!(filter != nullptr && selector != nullptr))
156
0
                << "filter and selector can not be both set";
157
0
        ColumnPtr argument_column;
158
0
        RETURN_IF_ERROR(
159
0
                _children[0]->execute_column(context, block, selector, count, argument_column));
160
0
        argument_column = argument_column->convert_to_full_column_if_const();
161
162
0
        if (arg_column != nullptr) {
163
0
            *arg_column = argument_column;
164
0
        }
165
166
0
        size_t sz = argument_column->size();
167
0
        auto res_data_column = ColumnUInt8::create(sz);
168
0
        res_data_column->resize(sz);
169
170
0
        if (const auto* nullable = check_and_get_column<ColumnNullable>(argument_column.get())) {
171
0
            auto column_nested = nullable->get_nested_column_ptr();
172
0
            const auto& null_map = nullable->get_null_map_data();
173
0
            _filter->find_batch_nullable(*column_nested, sz, null_map, res_data_column->get_data(),
174
0
                                         filter);
175
0
        } else {
176
0
            _filter->find_batch(*argument_column, sz, res_data_column->get_data(), filter);
177
0
        }
178
179
0
        DCHECK(!_data_type->is_nullable());
180
0
        result_column = std::move(res_data_column);
181
0
        return Status::OK();
182
0
    }
183
184
6
    Status _materialize_for_zonemap_filter() {
185
6
        if (!_hybrid_set_values_match_child_type) {
186
1
            _zonemap_materialized = false;
187
1
            return Status::OK();
188
1
        }
189
5
        DORIS_CHECK(_filter != nullptr);
190
5
        auto& filter = *_filter;
191
5
        const auto& data_type = remove_nullable(get_child(0)->data_type());
192
5
        expr_zonemap::InZonemapMaterializedSet materialized;
193
5
        RETURN_IF_ERROR(expr_zonemap::materialize_hybrid_set_for_zonemap_filter(filter, data_type,
194
5
                                                                                &materialized));
195
5
        _seg_filter_values = std::move(materialized.values);
196
5
        _seg_filter_min = std::move(materialized.min_value);
197
5
        _seg_filter_max = std::move(materialized.max_value);
198
5
        _zonemap_materialized = true;
199
5
        return Status::OK();
200
5
    }
201
202
    std::shared_ptr<HybridSetBase> _filter;
203
    // Dictionary-filter rewrites may store physical dictionary codes in the HybridSet while the
204
    // child slot keeps the original logical type. Such values must not be materialized as child-type
205
    // literals for zonemap pruning or slot-IN rewrite.
206
    bool _hybrid_set_values_match_child_type = true;
207
    std::string _expr_name;
208
    bool _zonemap_materialized = false;
209
    std::vector<Field> _seg_filter_values;
210
    Field _seg_filter_min;
211
    Field _seg_filter_max;
212
};
213
214
} // namespace doris