Coverage Report

Created: 2024-11-18 11:49

/root/doris/be/src/vec/functions/in.h
Line
Count
Source (jump to first uncovered line)
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
// This file is copied from
18
19
#pragma once
20
21
#include <glog/logging.h>
22
23
#include <boost/iterator/iterator_facade.hpp>
24
#include <cstddef>
25
#include <memory>
26
#include <utility>
27
#include <vector>
28
29
#include "common/status.h"
30
#include "exprs/create_predicate_function.h"
31
#include "exprs/hybrid_set.h"
32
#include "runtime/define_primitive_type.h"
33
#include "runtime/types.h"
34
#include "udf/udf.h"
35
#include "vec/aggregate_functions/aggregate_function.h"
36
#include "vec/columns/column.h"
37
#include "vec/columns/column_const.h"
38
#include "vec/columns/column_nullable.h"
39
#include "vec/columns/column_vector.h"
40
#include "vec/columns/columns_number.h"
41
#include "vec/common/string_ref.h"
42
#include "vec/core/block.h"
43
#include "vec/core/column_numbers.h"
44
#include "vec/core/column_with_type_and_name.h"
45
#include "vec/core/types.h"
46
#include "vec/data_types/data_type.h"
47
#include "vec/data_types/data_type_nullable.h"
48
#include "vec/data_types/data_type_number.h"
49
#include "vec/functions/function.h"
50
51
namespace doris::vectorized {
52
53
template <typename T>
54
class ColumnStr;
55
using ColumnString = ColumnStr<UInt32>;
56
57
struct InState {
58
    bool use_set = true;
59
    std::unique_ptr<HybridSetBase> hybrid_set;
60
};
61
62
template <bool negative>
63
class FunctionIn : public IFunction {
64
public:
65
    static constexpr auto name = negative ? "not_in" : "in";
66
67
2
    static FunctionPtr create() { return std::make_shared<FunctionIn>(); }
_ZN5doris10vectorized10FunctionInILb0EE6createEv
Line
Count
Source
67
1
    static FunctionPtr create() { return std::make_shared<FunctionIn>(); }
_ZN5doris10vectorized10FunctionInILb1EE6createEv
Line
Count
Source
67
1
    static FunctionPtr create() { return std::make_shared<FunctionIn>(); }
68
69
0
    String get_name() const override { return name; }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE8get_nameB5cxx11Ev
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE8get_nameB5cxx11Ev
70
71
0
    bool is_variadic() const override { return true; }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE11is_variadicEv
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE11is_variadicEv
72
73
0
    size_t get_number_of_arguments() const override { return 0; }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE23get_number_of_argumentsEv
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE23get_number_of_argumentsEv
74
75
0
    DataTypePtr get_return_type_impl(const DataTypes& args) const override {
76
0
        for (const auto& arg : args) {
77
0
            if (arg->is_nullable()) {
78
0
                return make_nullable(std::make_shared<DataTypeUInt8>());
79
0
            }
80
0
        }
81
0
        return std::make_shared<DataTypeUInt8>();
82
0
    }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE20get_return_type_implERKSt6vectorISt10shared_ptrIKNS0_9IDataTypeEESaIS7_EE
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE20get_return_type_implERKSt6vectorISt10shared_ptrIKNS0_9IDataTypeEESaIS7_EE
83
84
0
    bool use_default_implementation_for_nulls() const override { return false; }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE36use_default_implementation_for_nullsEv
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE36use_default_implementation_for_nullsEv
85
86
    // size of [ in ( 1 , 2  , 3 , null) ]  is 3
87
0
    size_t get_size_with_out_null(FunctionContext* context) {
88
0
        if ((context->get_num_args() - 1) > FIXED_CONTAINER_MAX_SIZE) {
89
0
            return context->get_num_args() - 1;
90
0
        }
91
0
        size_t sz = 0;
92
0
        for (int i = 1; i < context->get_num_args(); ++i) {
93
0
            const auto& const_column_ptr = context->get_constant_col(i);
94
0
            if (const_column_ptr != nullptr) {
95
0
                auto const_data = const_column_ptr->column_ptr->get_data_at(0);
96
0
                if (const_data.data != nullptr) {
97
0
                    sz++;
98
0
                }
99
0
            }
100
0
        }
101
0
        return sz;
102
0
    }
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE22get_size_with_out_nullEPNS_15FunctionContextE
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE22get_size_with_out_nullEPNS_15FunctionContextE
103
104
0
    Status open(FunctionContext* context, FunctionContext::FunctionStateScope scope) override {
105
0
        if (scope == FunctionContext::THREAD_LOCAL) {
106
0
            return Status::OK();
107
0
        }
108
0
        std::shared_ptr<InState> state = std::make_shared<InState>();
109
0
        context->set_function_state(scope, state);
110
0
        DCHECK(context->get_num_args() >= 1);
111
0
        if (context->get_arg_type(0)->type == PrimitiveType::TYPE_NULL) {
112
0
            state->hybrid_set.reset(create_set(TYPE_BOOLEAN, 0));
113
0
        } else if (context->get_arg_type(0)->type == PrimitiveType::TYPE_CHAR ||
114
0
                   context->get_arg_type(0)->type == PrimitiveType::TYPE_VARCHAR ||
115
0
                   context->get_arg_type(0)->type == PrimitiveType::TYPE_STRING) {
116
            // the StringValue's memory is held by FunctionContext, so we can use StringValueSet here directly
117
0
            state->hybrid_set.reset(create_string_value_set(get_size_with_out_null(context)));
118
0
        } else {
119
0
            state->hybrid_set.reset(
120
0
                    create_set(context->get_arg_type(0)->type, get_size_with_out_null(context)));
121
0
        }
122
0
        state->hybrid_set->set_null_aware(true);
123
124
0
        for (int i = 1; i < context->get_num_args(); ++i) {
125
0
            const auto& const_column_ptr = context->get_constant_col(i);
126
0
            if (const_column_ptr != nullptr) {
127
0
                auto const_data = const_column_ptr->column_ptr->get_data_at(0);
128
0
                state->hybrid_set->insert((void*)const_data.data, const_data.size);
129
0
            } else {
130
0
                state->use_set = false;
131
0
                state->hybrid_set.reset();
132
0
                break;
133
0
            }
134
0
        }
135
0
        return Status::OK();
136
0
    }
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE4openEPNS_15FunctionContextENS3_18FunctionStateScopeE
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE4openEPNS_15FunctionContextENS3_18FunctionStateScopeE
137
138
    Status evaluate_inverted_index(
139
            const ColumnsWithTypeAndName& arguments,
140
            const std::vector<vectorized::IndexFieldNameAndTypePair>& data_type_with_names,
141
            std::vector<segment_v2::InvertedIndexIterator*> iterators, uint32_t num_rows,
142
0
            segment_v2::InvertedIndexResultBitmap& bitmap_result) const override {
143
0
        DCHECK(data_type_with_names.size() == 1);
144
0
        DCHECK(iterators.size() == 1);
145
0
        auto* iter = iterators[0];
146
0
        auto data_type_with_name = data_type_with_names[0];
147
0
        std::shared_ptr<roaring::Roaring> roaring = std::make_shared<roaring::Roaring>();
148
0
        std::shared_ptr<roaring::Roaring> null_bitmap = std::make_shared<roaring::Roaring>();
149
150
0
        if (iter == nullptr) {
151
0
            return Status::OK();
152
0
        }
153
0
        if (iter->get_inverted_index_reader_type() ==
154
0
            segment_v2::InvertedIndexReaderType::FULLTEXT) {
155
            //NOT support in list when parser is FULLTEXT for expr inverted index evaluate.
156
0
            return Status::OK();
157
0
        }
158
0
        if (iter->has_null()) {
159
0
            segment_v2::InvertedIndexQueryCacheHandle null_bitmap_cache_handle;
160
0
            RETURN_IF_ERROR(iter->read_null_bitmap(&null_bitmap_cache_handle));
161
0
            null_bitmap = null_bitmap_cache_handle.get_bitmap();
162
0
        }
163
0
        std::string column_name = data_type_with_name.first;
164
0
        for (const auto& arg : arguments) {
165
0
            Field param_value;
166
0
            arg.column->get(0, param_value);
167
0
            auto param_type = arg.type->get_type_as_type_descriptor().type;
168
0
            if (param_value.is_null()) {
169
                // predicate like column NOT IN (NULL, '') should not push down to index.
170
0
                if (negative) {
171
0
                    return Status::OK();
172
0
                }
173
0
                *roaring |= *null_bitmap;
174
0
                continue;
175
0
            }
176
0
            std::unique_ptr<InvertedIndexQueryParamFactory> query_param = nullptr;
177
0
            RETURN_IF_ERROR(InvertedIndexQueryParamFactory::create_query_value(
178
0
                    param_type, &param_value, query_param));
179
0
            InvertedIndexQueryType query_type = InvertedIndexQueryType::EQUAL_QUERY;
180
0
            std::shared_ptr<roaring::Roaring> index = std::make_shared<roaring::Roaring>();
181
0
            RETURN_IF_ERROR(iter->read_from_inverted_index(column_name, query_param->get_value(),
182
0
                                                           query_type, num_rows, index));
183
0
            *roaring |= *index;
184
0
        }
185
0
        segment_v2::InvertedIndexResultBitmap result(roaring, null_bitmap);
186
0
        bitmap_result = result;
187
0
        bitmap_result.mask_out_null();
188
0
        if constexpr (negative) {
189
0
            roaring::Roaring full_result;
190
0
            full_result.addRange(0, num_rows);
191
0
            bitmap_result.op_not(&full_result);
192
0
        }
193
0
        return Status::OK();
194
0
    }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE23evaluate_inverted_indexERKSt6vectorINS0_21ColumnWithTypeAndNameESaIS4_EERKS3_ISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt10shared_ptrIKNS0_9IDataTypeEEESaISK_EES3_IPNS_10segment_v221InvertedIndexIteratorESaISR_EEjRNSP_25InvertedIndexResultBitmapE
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE23evaluate_inverted_indexERKSt6vectorINS0_21ColumnWithTypeAndNameESaIS4_EERKS3_ISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt10shared_ptrIKNS0_9IDataTypeEEESaISK_EES3_IPNS_10segment_v221InvertedIndexIteratorESaISR_EEjRNSP_25InvertedIndexResultBitmapE
195
196
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
197
0
                        uint32_t result, size_t input_rows_count) const override {
198
0
        auto* in_state = reinterpret_cast<InState*>(
199
0
                context->get_function_state(FunctionContext::FRAGMENT_LOCAL));
200
0
        if (!in_state) {
201
0
            return Status::RuntimeError("funciton context for function '{}' must have Set;",
202
0
                                        get_name());
203
0
        }
204
0
        auto res = ColumnUInt8::create();
205
0
        ColumnUInt8::Container& vec_res = res->get_data();
206
0
        vec_res.resize(input_rows_count);
207
208
0
        ColumnUInt8::MutablePtr col_null_map_to;
209
0
        col_null_map_to = ColumnUInt8::create(input_rows_count, false);
210
0
        auto& vec_null_map_to = col_null_map_to->get_data();
211
212
0
        const ColumnWithTypeAndName& left_arg = block.get_by_position(arguments[0]);
213
0
        const auto& [materialized_column, col_const] = unpack_if_const(left_arg.column);
214
215
0
        if (in_state->use_set) {
216
0
            if (materialized_column->is_nullable()) {
217
0
                const auto* null_col_ptr =
218
0
                        vectorized::check_and_get_column<vectorized::ColumnNullable>(
219
0
                                materialized_column);
220
0
                const auto& null_map = assert_cast<const vectorized::ColumnUInt8&>(
221
0
                                               null_col_ptr->get_null_map_column())
222
0
                                               .get_data();
223
0
                const auto* nested_col_ptr = null_col_ptr->get_nested_column_ptr().get();
224
225
0
                if (nested_col_ptr->is_column_string()) {
226
0
                    const auto* column_string_ptr =
227
0
                            assert_cast<const vectorized::ColumnString*>(nested_col_ptr);
228
0
                    search_hash_set_check_null(in_state, input_rows_count, vec_res, null_map,
229
0
                                               column_string_ptr);
230
0
                } else {
231
                    //TODO: support other column type
232
0
                    search_hash_set_check_null(in_state, input_rows_count, vec_res, null_map,
233
0
                                               nested_col_ptr);
234
0
                }
235
236
0
                if (!in_state->hybrid_set->contain_null()) {
237
0
                    for (size_t i = 0; i < input_rows_count; ++i) {
238
0
                        vec_null_map_to[i] = null_map[i];
239
0
                    }
240
0
                } else {
241
0
                    for (size_t i = 0; i < input_rows_count; ++i) {
242
0
                        vec_null_map_to[i] = null_map[i] || negative == vec_res[i];
243
0
                    }
244
0
                }
245
246
0
            } else { // non-nullable
247
0
                if (WhichDataType(left_arg.type).is_string()) {
248
0
                    const auto* column_string_ptr =
249
0
                            assert_cast<const vectorized::ColumnString*>(materialized_column.get());
250
0
                    search_hash_set(in_state, input_rows_count, vec_res, column_string_ptr);
251
0
                } else {
252
0
                    search_hash_set(in_state, input_rows_count, vec_res, materialized_column.get());
253
0
                }
254
255
0
                if (in_state->hybrid_set->contain_null()) {
256
0
                    for (size_t i = 0; i < input_rows_count; ++i) {
257
0
                        vec_null_map_to[i] = negative == vec_res[i];
258
0
                    }
259
0
                }
260
0
            }
261
0
        } else { //!in_state->use_set
262
0
            std::vector<ColumnPtr> set_columns;
263
0
            for (int i = 1; i < arguments.size(); ++i) {
264
0
                set_columns.emplace_back(block.get_by_position(arguments[i]).column);
265
0
            }
266
0
            if (col_const) {
267
0
                impl_without_set<true>(context, set_columns, input_rows_count, vec_res,
268
0
                                       vec_null_map_to, materialized_column);
269
0
            } else {
270
0
                impl_without_set<false>(context, set_columns, input_rows_count, vec_res,
271
0
                                        vec_null_map_to, materialized_column);
272
0
            }
273
0
        }
274
275
0
        if (block.get_by_position(result).type->is_nullable()) {
276
0
            block.replace_by_position(
277
0
                    result, ColumnNullable::create(std::move(res), std::move(col_null_map_to)));
278
0
        } else {
279
0
            block.replace_by_position(result, std::move(res));
280
0
        }
281
282
0
        return Status::OK();
283
0
    }
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb0EE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjm
Unexecuted instantiation: _ZNK5doris10vectorized10FunctionInILb1EE12execute_implEPNS_15FunctionContextERNS0_5BlockERKSt6vectorIjSaIjEEjm
284
285
0
    Status close(FunctionContext* context, FunctionContext::FunctionStateScope scope) override {
286
0
        return Status::OK();
287
0
    }
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE5closeEPNS_15FunctionContextENS3_18FunctionStateScopeE
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE5closeEPNS_15FunctionContextENS3_18FunctionStateScopeE
288
289
private:
290
    template <typename T>
291
    static void search_hash_set_check_null(InState* in_state, size_t input_rows_count,
292
                                           ColumnUInt8::Container& vec_res,
293
0
                                           const ColumnUInt8::Container& null_map, T* col_ptr) {
294
0
        if constexpr (!negative) {
295
0
            in_state->hybrid_set->find_batch_nullable(*col_ptr, input_rows_count, null_map,
296
0
                                                      vec_res);
297
0
        } else {
298
0
            in_state->hybrid_set->find_batch_nullable_negative(*col_ptr, input_rows_count, null_map,
299
0
                                                               vec_res);
300
0
        }
301
0
    }
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE26search_hash_set_check_nullIKNS0_9ColumnStrIjEEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEERKSD_PT_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE26search_hash_set_check_nullIKNS0_7IColumnEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEERKSC_PT_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE26search_hash_set_check_nullIKNS0_9ColumnStrIjEEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEERKSD_PT_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE26search_hash_set_check_nullIKNS0_7IColumnEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEERKSC_PT_
302
303
    template <typename T>
304
    static void search_hash_set(InState* in_state, size_t input_rows_count,
305
0
                                ColumnUInt8::Container& vec_res, T* col_ptr) {
306
0
        if constexpr (!negative) {
307
0
            in_state->hybrid_set->find_batch(*col_ptr, input_rows_count, vec_res);
308
0
        } else {
309
0
            in_state->hybrid_set->find_batch_negative(*col_ptr, input_rows_count, vec_res);
310
0
        }
311
0
    }
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE15search_hash_setIKNS0_9ColumnStrIjEEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEEPT_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE15search_hash_setIKNS0_7IColumnEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEEPT_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE15search_hash_setIKNS0_9ColumnStrIjEEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEEPT_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE15search_hash_setIKNS0_7IColumnEEEvPNS0_7InStateEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEEPT_
312
313
    template <bool Const>
314
    static void impl_without_set(FunctionContext* context,
315
                                 const std::vector<ColumnPtr>& set_columns, size_t input_rows_count,
316
                                 ColumnUInt8::Container& vec_res,
317
                                 ColumnUInt8::Container& vec_null_map_to,
318
0
                                 const ColumnPtr& materialized_column) {
319
0
        for (size_t i = 0; i < input_rows_count; ++i) {
320
0
            const auto& ref_data = materialized_column->get_data_at(index_check_const(i, Const));
321
0
            if (ref_data.data == nullptr) {
322
0
                vec_null_map_to[i] = true;
323
0
                continue;
324
0
            }
325
326
0
            std::vector<StringRef> set_datas;
327
            // To comply with the SQL standard, IN() returns NULL not only if the expression on the left hand side is NULL,
328
            // but also if no match is found in the list and one of the expressions in the list is NULL.
329
0
            bool null_in_set = false;
330
331
0
            for (const auto& set_column : set_columns) {
332
0
                auto set_data = set_column->get_data_at(i);
333
0
                if (set_data.data == nullptr) {
334
0
                    null_in_set = true;
335
0
                } else {
336
0
                    set_datas.push_back(set_data);
337
0
                }
338
0
            }
339
0
            std::unique_ptr<HybridSetBase> hybrid_set(
340
0
                    create_set(context->get_arg_type(0)->type, set_datas.size()));
341
0
            for (auto& set_data : set_datas) {
342
0
                hybrid_set->insert((void*)(set_data.data), set_data.size);
343
0
            }
344
345
0
            vec_res[i] = negative ^ hybrid_set->find((void*)ref_data.data, ref_data.size);
346
0
            if (null_in_set) {
347
0
                vec_null_map_to[i] = negative == vec_res[i];
348
0
            } else {
349
0
                vec_null_map_to[i] = false;
350
0
            }
351
0
        }
352
0
    }
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE16impl_without_setILb1EEEvPNS_15FunctionContextERKSt6vectorIN3COWINS0_7IColumnEE13immutable_ptrIS8_EESaISB_EEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEESL_RKSB_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb0EE16impl_without_setILb0EEEvPNS_15FunctionContextERKSt6vectorIN3COWINS0_7IColumnEE13immutable_ptrIS8_EESaISB_EEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEESL_RKSB_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE16impl_without_setILb1EEEvPNS_15FunctionContextERKSt6vectorIN3COWINS0_7IColumnEE13immutable_ptrIS8_EESaISB_EEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEESL_RKSB_
Unexecuted instantiation: _ZN5doris10vectorized10FunctionInILb1EE16impl_without_setILb0EEEvPNS_15FunctionContextERKSt6vectorIN3COWINS0_7IColumnEE13immutable_ptrIS8_EESaISB_EEmRNS0_8PODArrayIhLm4096E9AllocatorILb0ELb0ELb0E22DefaultMemoryAllocatorELm16ELm15EEESL_RKSB_
353
};
354
355
} // namespace doris::vectorized