be/src/exprs/create_predicate_function.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 "common/exception.h" |
21 | | #include "common/status.h" |
22 | | #include "core/data_type/define_primitive_type.h" |
23 | | #include "exprs/hybrid_set.h" |
24 | | #include "exprs/minmax_predicate.h" |
25 | | #include "storage/predicate/bloom_filter_predicate.h" |
26 | | #include "storage/predicate/column_predicate.h" |
27 | | #include "storage/predicate/in_list_predicate.h" |
28 | | |
29 | | namespace doris { |
30 | | |
31 | | class MinmaxFunctionTraits { |
32 | | public: |
33 | | using BasePtr = MinMaxFuncBase*; |
34 | | template <PrimitiveType type, size_t N> |
35 | 24.6k | static BasePtr get_function(bool null_aware) { |
36 | 24.6k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
37 | 24.6k | return new MinMaxNumFunc< |
38 | 24.6k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
39 | 24.6k | null_aware); |
40 | 24.6k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 5 | static BasePtr get_function(bool null_aware) { | 36 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 5 | return new MinMaxNumFunc< | 38 | 5 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 5 | null_aware); | 40 | 5 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 1 | static BasePtr get_function(bool null_aware) { | 36 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 1 | return new MinMaxNumFunc< | 38 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 1 | null_aware); | 40 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 960 | static BasePtr get_function(bool null_aware) { | 36 | 960 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 960 | return new MinMaxNumFunc< | 38 | 960 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 960 | null_aware); | 40 | 960 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 700 | static BasePtr get_function(bool null_aware) { | 36 | 700 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 700 | return new MinMaxNumFunc< | 38 | 700 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 700 | null_aware); | 40 | 700 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 15.0k | static BasePtr get_function(bool null_aware) { | 36 | 15.0k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 15.0k | return new MinMaxNumFunc< | 38 | 15.0k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 15.0k | null_aware); | 40 | 15.0k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 4.10k | static BasePtr get_function(bool null_aware) { | 36 | 4.10k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 4.10k | return new MinMaxNumFunc< | 38 | 4.10k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 4.10k | null_aware); | 40 | 4.10k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 75 | static BasePtr get_function(bool null_aware) { | 36 | 75 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 75 | return new MinMaxNumFunc< | 38 | 75 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 75 | null_aware); | 40 | 75 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 1 | static BasePtr get_function(bool null_aware) { | 36 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 1 | return new MinMaxNumFunc< | 38 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 1 | null_aware); | 40 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 3 | static BasePtr get_function(bool null_aware) { | 36 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 3 | return new MinMaxNumFunc< | 38 | 3 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 3 | null_aware); | 40 | 3 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 16 | static BasePtr get_function(bool null_aware) { | 36 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 16 | return new MinMaxNumFunc< | 38 | 16 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 16 | null_aware); | 40 | 16 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 13 | static BasePtr get_function(bool null_aware) { | 36 | 13 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 13 | return new MinMaxNumFunc< | 38 | 13 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 13 | null_aware); | 40 | 13 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 481 | static BasePtr get_function(bool null_aware) { | 36 | 481 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 481 | return new MinMaxNumFunc< | 38 | 481 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 481 | null_aware); | 40 | 481 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 2.42k | static BasePtr get_function(bool null_aware) { | 36 | 2.42k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 2.42k | return new MinMaxNumFunc< | 38 | 2.42k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 2.42k | null_aware); | 40 | 2.42k | } |
Unexecuted instantiation: _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Unexecuted instantiation: _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_14MinMaxFuncBaseEb _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 81 | static BasePtr get_function(bool null_aware) { | 36 | 81 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 81 | return new MinMaxNumFunc< | 38 | 81 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 81 | null_aware); | 40 | 81 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 239 | static BasePtr get_function(bool null_aware) { | 36 | 239 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 239 | return new MinMaxNumFunc< | 38 | 239 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 239 | null_aware); | 40 | 239 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 97 | static BasePtr get_function(bool null_aware) { | 36 | 97 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 97 | return new MinMaxNumFunc< | 38 | 97 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 97 | null_aware); | 40 | 97 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 75 | static BasePtr get_function(bool null_aware) { | 36 | 75 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 75 | return new MinMaxNumFunc< | 38 | 75 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 75 | null_aware); | 40 | 75 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 132 | static BasePtr get_function(bool null_aware) { | 36 | 132 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 132 | return new MinMaxNumFunc< | 38 | 132 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 132 | null_aware); | 40 | 132 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 176 | static BasePtr get_function(bool null_aware) { | 36 | 176 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 176 | return new MinMaxNumFunc< | 38 | 176 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 176 | null_aware); | 40 | 176 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 67 | static BasePtr get_function(bool null_aware) { | 36 | 67 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 67 | return new MinMaxNumFunc< | 38 | 67 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 67 | null_aware); | 40 | 67 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 1 | static BasePtr get_function(bool null_aware) { | 36 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 1 | return new MinMaxNumFunc< | 38 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 1 | null_aware); | 40 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 1 | static BasePtr get_function(bool null_aware) { | 36 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 1 | return new MinMaxNumFunc< | 38 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 1 | null_aware); | 40 | 1 | } |
|
41 | | }; |
42 | | |
43 | | class HybridSetTraits { |
44 | | public: |
45 | | using BasePtr = HybridSetBase*; |
46 | | template <PrimitiveType type, size_t N> |
47 | 28.7k | static BasePtr get_function(bool null_aware) { |
48 | 28.7k | if constexpr (is_string_type(type)) { |
49 | 837 | return new StringSet<>(null_aware); |
50 | 1.26k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
51 | 1.26k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
52 | 1.26k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
53 | 1.26k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
54 | 995 | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 995 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
56 | 25.6k | } else { |
57 | 25.6k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 25.6k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
59 | 25.6k | } |
60 | 28.7k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 19 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 19 | } else { | 57 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 19 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 19 | } | 60 | 19 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 4 | } else { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 4 | } | 60 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 700 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 700 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 700 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 700 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 700 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 550 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 550 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 550 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 550 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 550 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 17.3k | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 17.3k | } else { | 57 | 17.3k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 17.3k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 17.3k | } | 60 | 17.3k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4.17k | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 4.17k | } else { | 57 | 4.17k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4.17k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 4.17k | } | 60 | 4.17k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 132 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 132 | } else { | 57 | 132 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 132 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 132 | } | 60 | 132 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 34 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 34 | } else { | 57 | 34 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 34 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 34 | } | 60 | 34 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 45 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 45 | } else { | 57 | 45 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 45 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 45 | } | 60 | 45 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 19 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 19 | } else { | 57 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 19 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 19 | } | 60 | 19 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 52 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 52 | } else { | 57 | 52 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 52 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 52 | } | 60 | 52 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 842 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 842 | } else { | 57 | 842 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 842 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 842 | } | 60 | 842 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2.51k | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 2.51k | } else { | 57 | 2.51k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2.51k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 2.51k | } | 60 | 2.51k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 17 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 17 | } else { | 57 | 17 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 17 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 17 | } | 60 | 17 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 1 | } else { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 1 | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 115 | static BasePtr get_function(bool null_aware) { | 48 | 115 | if constexpr (is_string_type(type)) { | 49 | 115 | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 115 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 600 | static BasePtr get_function(bool null_aware) { | 48 | 600 | if constexpr (is_string_type(type)) { | 49 | 600 | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 600 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 122 | static BasePtr get_function(bool null_aware) { | 48 | 122 | if constexpr (is_string_type(type)) { | 49 | 122 | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 122 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 132 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 132 | } else { | 57 | 132 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 132 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 132 | } | 60 | 132 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 76 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 76 | } else { | 57 | 76 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 76 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 76 | } | 60 | 76 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 63 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 63 | } else { | 57 | 63 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 63 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 63 | } | 60 | 63 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 94 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 94 | } else { | 57 | 94 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 94 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 94 | } | 60 | 94 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 18 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 18 | } else { | 57 | 18 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 18 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 18 | } | 60 | 18 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 18 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 18 | } else { | 57 | 18 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 18 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 18 | } | 60 | 18 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 2 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 2 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 31 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 31 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 31 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 31 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 31 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 8 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 555 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 555 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 555 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 555 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 555 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 71 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 71 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 71 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 71 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 71 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 36 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 36 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 36 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 36 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 36 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 26 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 26 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 26 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 26 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 26 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 9 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 9 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 9 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 9 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 8 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 4 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 4 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 60 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 60 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 60 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 60 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 60 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 23 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 23 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 23 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 23 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 23 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 25 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 25 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 25 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 25 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 25 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 6 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 6 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 8 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 13 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 13 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 13 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 13 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 13 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm7EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm7EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm7EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 10 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 10 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 10 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 10 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb |
61 | | }; |
62 | | |
63 | | class BloomFilterTraits { |
64 | | public: |
65 | | using BasePtr = BloomFilterFuncBase*; |
66 | | template <PrimitiveType type, size_t N> |
67 | 16.1k | static BasePtr get_function(bool null_aware) { |
68 | 16.1k | return new BloomFilterFunc<type>(null_aware); |
69 | 16.1k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 22 | static BasePtr get_function(bool null_aware) { | 68 | 22 | return new BloomFilterFunc<type>(null_aware); | 69 | 22 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1 | static BasePtr get_function(bool null_aware) { | 68 | 1 | return new BloomFilterFunc<type>(null_aware); | 69 | 1 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.21k | static BasePtr get_function(bool null_aware) { | 68 | 1.21k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.21k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 792 | static BasePtr get_function(bool null_aware) { | 68 | 792 | return new BloomFilterFunc<type>(null_aware); | 69 | 792 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 8.57k | static BasePtr get_function(bool null_aware) { | 68 | 8.57k | return new BloomFilterFunc<type>(null_aware); | 69 | 8.57k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 3.36k | static BasePtr get_function(bool null_aware) { | 68 | 3.36k | return new BloomFilterFunc<type>(null_aware); | 69 | 3.36k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 170 | static BasePtr get_function(bool null_aware) { | 68 | 170 | return new BloomFilterFunc<type>(null_aware); | 69 | 170 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1 | static BasePtr get_function(bool null_aware) { | 68 | 1 | return new BloomFilterFunc<type>(null_aware); | 69 | 1 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 12 | static BasePtr get_function(bool null_aware) { | 68 | 12 | return new BloomFilterFunc<type>(null_aware); | 69 | 12 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 19 | static BasePtr get_function(bool null_aware) { | 68 | 19 | return new BloomFilterFunc<type>(null_aware); | 69 | 19 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 58 | static BasePtr get_function(bool null_aware) { | 68 | 58 | return new BloomFilterFunc<type>(null_aware); | 69 | 58 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 734 | static BasePtr get_function(bool null_aware) { | 68 | 734 | return new BloomFilterFunc<type>(null_aware); | 69 | 734 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 272 | static BasePtr get_function(bool null_aware) { | 68 | 272 | return new BloomFilterFunc<type>(null_aware); | 69 | 272 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 13 | static BasePtr get_function(bool null_aware) { | 68 | 13 | return new BloomFilterFunc<type>(null_aware); | 69 | 13 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1 | static BasePtr get_function(bool null_aware) { | 68 | 1 | return new BloomFilterFunc<type>(null_aware); | 69 | 1 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 80 | static BasePtr get_function(bool null_aware) { | 68 | 80 | return new BloomFilterFunc<type>(null_aware); | 69 | 80 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 509 | static BasePtr get_function(bool null_aware) { | 68 | 509 | return new BloomFilterFunc<type>(null_aware); | 69 | 509 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 44 | static BasePtr get_function(bool null_aware) { | 68 | 44 | return new BloomFilterFunc<type>(null_aware); | 69 | 44 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 92 | static BasePtr get_function(bool null_aware) { | 68 | 92 | return new BloomFilterFunc<type>(null_aware); | 69 | 92 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 53 | static BasePtr get_function(bool null_aware) { | 68 | 53 | return new BloomFilterFunc<type>(null_aware); | 69 | 53 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 63 | static BasePtr get_function(bool null_aware) { | 68 | 63 | return new BloomFilterFunc<type>(null_aware); | 69 | 63 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 49 | static BasePtr get_function(bool null_aware) { | 68 | 49 | return new BloomFilterFunc<type>(null_aware); | 69 | 49 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 17 | static BasePtr get_function(bool null_aware) { | 68 | 17 | return new BloomFilterFunc<type>(null_aware); | 69 | 17 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 17 | static BasePtr get_function(bool null_aware) { | 68 | 17 | return new BloomFilterFunc<type>(null_aware); | 69 | 17 | } |
|
70 | | }; |
71 | | |
72 | | template <class Traits> |
73 | | class PredicateFunctionCreator { |
74 | | public: |
75 | | template <PrimitiveType type, size_t N = 0> |
76 | 69.4k | static typename Traits::BasePtr create(bool null_aware) { |
77 | 69.4k | return Traits::template get_function<type, N>(null_aware); |
78 | 69.4k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 19 | return Traits::template get_function<type, N>(null_aware); | 78 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4 | return Traits::template get_function<type, N>(null_aware); | 78 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 700 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 700 | return Traits::template get_function<type, N>(null_aware); | 78 | 700 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 549 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 549 | return Traits::template get_function<type, N>(null_aware); | 78 | 549 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 17.3k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17.3k | return Traits::template get_function<type, N>(null_aware); | 78 | 17.3k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4.15k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4.15k | return Traits::template get_function<type, N>(null_aware); | 78 | 4.15k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 131 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 131 | return Traits::template get_function<type, N>(null_aware); | 78 | 131 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 34 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 34 | return Traits::template get_function<type, N>(null_aware); | 78 | 34 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 45 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 45 | return Traits::template get_function<type, N>(null_aware); | 78 | 45 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 19 | return Traits::template get_function<type, N>(null_aware); | 78 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 52 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 52 | return Traits::template get_function<type, N>(null_aware); | 78 | 52 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 842 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 842 | return Traits::template get_function<type, N>(null_aware); | 78 | 842 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2.50k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2.50k | return Traits::template get_function<type, N>(null_aware); | 78 | 2.50k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 115 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 115 | return Traits::template get_function<type, N>(null_aware); | 78 | 115 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 600 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 600 | return Traits::template get_function<type, N>(null_aware); | 78 | 600 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 122 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 122 | return Traits::template get_function<type, N>(null_aware); | 78 | 122 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 132 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 132 | return Traits::template get_function<type, N>(null_aware); | 78 | 132 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 76 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 76 | return Traits::template get_function<type, N>(null_aware); | 78 | 76 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 63 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 63 | return Traits::template get_function<type, N>(null_aware); | 78 | 63 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 94 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 94 | return Traits::template get_function<type, N>(null_aware); | 78 | 94 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 18 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 18 | return Traits::template get_function<type, N>(null_aware); | 78 | 18 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 18 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 18 | return Traits::template get_function<type, N>(null_aware); | 78 | 18 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 960 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 960 | return Traits::template get_function<type, N>(null_aware); | 78 | 960 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 700 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 700 | return Traits::template get_function<type, N>(null_aware); | 78 | 700 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 15.0k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 15.0k | return Traits::template get_function<type, N>(null_aware); | 78 | 15.0k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 4.08k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4.08k | return Traits::template get_function<type, N>(null_aware); | 78 | 4.08k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 75 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 75 | return Traits::template get_function<type, N>(null_aware); | 78 | 75 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 16 | return Traits::template get_function<type, N>(null_aware); | 78 | 16 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 13 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 13 | return Traits::template get_function<type, N>(null_aware); | 78 | 13 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 481 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 481 | return Traits::template get_function<type, N>(null_aware); | 78 | 481 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 2.42k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2.42k | return Traits::template get_function<type, N>(null_aware); | 78 | 2.42k | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_14MinMaxFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 81 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 81 | return Traits::template get_function<type, N>(null_aware); | 78 | 81 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 239 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 239 | return Traits::template get_function<type, N>(null_aware); | 78 | 239 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 97 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 97 | return Traits::template get_function<type, N>(null_aware); | 78 | 97 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 75 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 75 | return Traits::template get_function<type, N>(null_aware); | 78 | 75 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 132 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 132 | return Traits::template get_function<type, N>(null_aware); | 78 | 132 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 176 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 176 | return Traits::template get_function<type, N>(null_aware); | 78 | 176 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 67 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 67 | return Traits::template get_function<type, N>(null_aware); | 78 | 67 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 22 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 22 | return Traits::template get_function<type, N>(null_aware); | 78 | 22 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1.21k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1.21k | return Traits::template get_function<type, N>(null_aware); | 78 | 1.21k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 792 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 792 | return Traits::template get_function<type, N>(null_aware); | 78 | 792 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 8.56k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 8.56k | return Traits::template get_function<type, N>(null_aware); | 78 | 8.56k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 3.37k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3.37k | return Traits::template get_function<type, N>(null_aware); | 78 | 3.37k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 171 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 171 | return Traits::template get_function<type, N>(null_aware); | 78 | 171 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 12 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 12 | return Traits::template get_function<type, N>(null_aware); | 78 | 12 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 19 | return Traits::template get_function<type, N>(null_aware); | 78 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 58 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 58 | return Traits::template get_function<type, N>(null_aware); | 78 | 58 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 736 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 736 | return Traits::template get_function<type, N>(null_aware); | 78 | 736 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 272 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 272 | return Traits::template get_function<type, N>(null_aware); | 78 | 272 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 13 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 13 | return Traits::template get_function<type, N>(null_aware); | 78 | 13 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 80 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 80 | return Traits::template get_function<type, N>(null_aware); | 78 | 80 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 509 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 509 | return Traits::template get_function<type, N>(null_aware); | 78 | 509 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 44 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 44 | return Traits::template get_function<type, N>(null_aware); | 78 | 44 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 92 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 92 | return Traits::template get_function<type, N>(null_aware); | 78 | 92 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 53 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 53 | return Traits::template get_function<type, N>(null_aware); | 78 | 53 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 63 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 63 | return Traits::template get_function<type, N>(null_aware); | 78 | 63 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 49 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 49 | return Traits::template get_function<type, N>(null_aware); | 78 | 49 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 31 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 31 | return Traits::template get_function<type, N>(null_aware); | 78 | 31 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 8 | return Traits::template get_function<type, N>(null_aware); | 78 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 555 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 555 | return Traits::template get_function<type, N>(null_aware); | 78 | 555 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 71 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 71 | return Traits::template get_function<type, N>(null_aware); | 78 | 71 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 36 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 36 | return Traits::template get_function<type, N>(null_aware); | 78 | 36 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 26 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 26 | return Traits::template get_function<type, N>(null_aware); | 78 | 26 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4 | return Traits::template get_function<type, N>(null_aware); | 78 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 9 | return Traits::template get_function<type, N>(null_aware); | 78 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 8 | return Traits::template get_function<type, N>(null_aware); | 78 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4 | return Traits::template get_function<type, N>(null_aware); | 78 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 60 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 60 | return Traits::template get_function<type, N>(null_aware); | 78 | 60 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 23 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 23 | return Traits::template get_function<type, N>(null_aware); | 78 | 23 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 25 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 25 | return Traits::template get_function<type, N>(null_aware); | 78 | 25 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 6 | return Traits::template get_function<type, N>(null_aware); | 78 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 6 | return Traits::template get_function<type, N>(null_aware); | 78 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 8 | return Traits::template get_function<type, N>(null_aware); | 78 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 13 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 13 | return Traits::template get_function<type, N>(null_aware); | 78 | 13 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4 | return Traits::template get_function<type, N>(null_aware); | 78 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4 | return Traits::template get_function<type, N>(null_aware); | 78 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4 | return Traits::template get_function<type, N>(null_aware); | 78 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm7EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm7EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm7EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2 | return Traits::template get_function<type, N>(null_aware); | 78 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 10 | return Traits::template get_function<type, N>(null_aware); | 78 | 10 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb |
79 | | }; |
80 | | |
81 | | #define APPLY_FOR_PRIMTYPE(M) \ |
82 | 2.88k | M(TYPE_TINYINT) \ |
83 | 2.88k | M(TYPE_SMALLINT) \ |
84 | 41.5k | M(TYPE_INT) \ |
85 | 41.5k | M(TYPE_BIGINT) \ |
86 | 11.7k | M(TYPE_LARGEINT) \ |
87 | 383 | M(TYPE_FLOAT) \ |
88 | 72 | M(TYPE_DOUBLE) \ |
89 | 72 | M(TYPE_DATE) \ |
90 | 133 | M(TYPE_DATETIME) \ |
91 | 2.09k | M(TYPE_DATEV2) \ |
92 | 5.23k | M(TYPE_DATETIMEV2) \ |
93 | 5.23k | M(TYPE_TIMESTAMPTZ) \ |
94 | 49 | M(TYPE_TIMEV2) \ |
95 | 276 | M(TYPE_CHAR) \ |
96 | 1.34k | M(TYPE_VARCHAR) \ |
97 | 1.34k | M(TYPE_STRING) \ |
98 | 305 | M(TYPE_DECIMAL32) \ |
99 | 305 | M(TYPE_DECIMAL64) \ |
100 | 311 | M(TYPE_DECIMAL128I) \ |
101 | 311 | M(TYPE_DECIMAL256) \ |
102 | 218 | M(TYPE_IPV4) \ |
103 | 54 | M(TYPE_IPV6) |
104 | | |
105 | | template <class Traits, size_t N = 0> |
106 | 69.2k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
107 | 69.2k | using Creator = PredicateFunctionCreator<Traits>; |
108 | | |
109 | 69.2k | switch (type) { |
110 | 49 | case TYPE_BOOLEAN: { |
111 | 49 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
112 | 0 | } |
113 | 7 | case TYPE_DECIMALV2: { |
114 | 7 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
115 | 0 | } |
116 | 0 | #define M(NAME) \ |
117 | 69.3k | case NAME: { \ |
118 | 69.3k | return Creator::template create<NAME, N>(null_aware); \ |
119 | 69.3k | } |
120 | 69.3k | APPLY_FOR_PRIMTYPE(M) |
121 | 0 | #undef M |
122 | 0 | default: |
123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); |
124 | 69.2k | } |
125 | | |
126 | 0 | return nullptr; |
127 | 69.2k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 27.5k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 27.5k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 27.5k | switch (type) { | 110 | 19 | case TYPE_BOOLEAN: { | 111 | 19 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 4 | case TYPE_DECIMALV2: { | 114 | 4 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 4 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 27.5k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 27.5k | } |
_ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 24.6k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 24.6k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 24.6k | switch (type) { | 110 | 5 | case TYPE_BOOLEAN: { | 111 | 5 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 1 | case TYPE_DECIMALV2: { | 114 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 1 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 24.6k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 24.6k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 16.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 16.1k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 16.1k | switch (type) { | 110 | 22 | case TYPE_BOOLEAN: { | 111 | 22 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 1 | case TYPE_DECIMALV2: { | 114 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 1 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 16.1k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 16.1k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 53 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 53 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 53 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 53 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 53 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 738 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 738 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 738 | switch (type) { | 110 | 3 | case TYPE_BOOLEAN: { | 111 | 3 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 738 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 738 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 121 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 121 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 121 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 1 | case TYPE_DECIMALV2: { | 114 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 1 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 121 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 121 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 51 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 51 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 51 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 51 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 51 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 24 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 24 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 24 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 24 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 24 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 10 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 10 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 10 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 10 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 10 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 7 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 7 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 7 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 7 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 7 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm8EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 10 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 10 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 10 | switch (type) { | 110 | 0 | case TYPE_BOOLEAN: { | 111 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 0 | case TYPE_DECIMALV2: { | 114 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 115 | 0 | } | 116 | 0 | #define M(NAME) \ | 117 | 0 | case NAME: { \ | 118 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 119 | 0 | } | 120 | 0 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 10 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 10 | } |
|
128 | | |
129 | 24.6k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
130 | 24.6k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
131 | 24.6k | } |
132 | | |
133 | | template <size_t N = 0> |
134 | 28.7k | inline auto create_set(PrimitiveType type, bool null_aware) { |
135 | 28.7k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
136 | 28.7k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 27.6k | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 27.6k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 27.6k | } |
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 53 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 53 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 53 | } |
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 738 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 738 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 738 | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 121 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 121 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 121 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 51 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 51 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 51 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 24 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 24 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 24 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 10 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 7 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 7 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 7 | } |
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 10 | } |
|
137 | | |
138 | 1.00k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
139 | 1.00k | if (size == 0) { |
140 | 16 | return create_set<0>(type, null_aware); |
141 | 985 | } else if (size == 1) { |
142 | 51 | return create_set<1>(type, null_aware); |
143 | 934 | } else if (size == 2) { |
144 | 736 | return create_set<2>(type, null_aware); |
145 | 736 | } else if (size == 3) { |
146 | 101 | return create_set<3>(type, null_aware); |
147 | 101 | } else if (size == 4) { |
148 | 49 | return create_set<4>(type, null_aware); |
149 | 49 | } else if (size == 5) { |
150 | 22 | return create_set<5>(type, null_aware); |
151 | 26 | } else if (size == 6) { |
152 | 8 | return create_set<6>(type, null_aware); |
153 | 18 | } else if (size == 7) { |
154 | 5 | return create_set<7>(type, null_aware); |
155 | 13 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
156 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
157 | 7 | } else { |
158 | 6 | return create_set(type, null_aware); |
159 | 6 | } |
160 | 1.00k | } |
161 | | |
162 | 339 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
163 | 339 | return new StringValueSet(null_aware); |
164 | 339 | } |
165 | | |
166 | 338 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
167 | 338 | return create_string_value_set(null_aware); |
168 | 338 | } |
169 | | |
170 | 16.1k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
171 | 16.1k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
172 | 16.1k | } |
173 | | |
174 | | } // namespace doris |