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/function_filter.h" |
24 | | #include "exprs/hybrid_set.h" |
25 | | #include "exprs/minmax_predicate.h" |
26 | | #include "storage/predicate/bitmap_filter_predicate.h" |
27 | | #include "storage/predicate/bloom_filter_predicate.h" |
28 | | #include "storage/predicate/column_predicate.h" |
29 | | #include "storage/predicate/in_list_predicate.h" |
30 | | #include "storage/predicate/like_column_predicate.h" |
31 | | |
32 | | namespace doris { |
33 | | |
34 | | class MinmaxFunctionTraits { |
35 | | public: |
36 | | using BasePtr = MinMaxFuncBase*; |
37 | | template <PrimitiveType type, size_t N> |
38 | 46.7k | static BasePtr get_function(bool null_aware) { |
39 | 46.7k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
40 | 46.7k | return new MinMaxNumFunc< |
41 | 46.7k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
42 | 46.7k | null_aware); |
43 | 46.7k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 224 | static BasePtr get_function(bool null_aware) { | 39 | 224 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 224 | return new MinMaxNumFunc< | 41 | 224 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 224 | null_aware); | 43 | 224 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1 | static BasePtr get_function(bool null_aware) { | 39 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1 | return new MinMaxNumFunc< | 41 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1 | null_aware); | 43 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1.62k | static BasePtr get_function(bool null_aware) { | 39 | 1.62k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1.62k | return new MinMaxNumFunc< | 41 | 1.62k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1.62k | null_aware); | 43 | 1.62k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 786 | static BasePtr get_function(bool null_aware) { | 39 | 786 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 786 | return new MinMaxNumFunc< | 41 | 786 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 786 | null_aware); | 43 | 786 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 16.6k | static BasePtr get_function(bool null_aware) { | 39 | 16.6k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 16.6k | return new MinMaxNumFunc< | 41 | 16.6k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 16.6k | null_aware); | 43 | 16.6k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 19.9k | static BasePtr get_function(bool null_aware) { | 39 | 19.9k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 19.9k | return new MinMaxNumFunc< | 41 | 19.9k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 19.9k | null_aware); | 43 | 19.9k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 255 | static BasePtr get_function(bool null_aware) { | 39 | 255 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 255 | return new MinMaxNumFunc< | 41 | 255 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 255 | null_aware); | 43 | 255 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 289 | static BasePtr get_function(bool null_aware) { | 39 | 289 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 289 | return new MinMaxNumFunc< | 41 | 289 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 289 | null_aware); | 43 | 289 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 49 | static BasePtr get_function(bool null_aware) { | 39 | 49 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 49 | return new MinMaxNumFunc< | 41 | 49 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 49 | null_aware); | 43 | 49 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 19 | static BasePtr get_function(bool null_aware) { | 39 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 19 | return new MinMaxNumFunc< | 41 | 19 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 19 | null_aware); | 43 | 19 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 26 | static BasePtr get_function(bool null_aware) { | 39 | 26 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 26 | return new MinMaxNumFunc< | 41 | 26 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 26 | null_aware); | 43 | 26 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 856 | static BasePtr get_function(bool null_aware) { | 39 | 856 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 856 | return new MinMaxNumFunc< | 41 | 856 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 856 | null_aware); | 43 | 856 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 3.42k | static BasePtr get_function(bool null_aware) { | 39 | 3.42k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 3.42k | return new MinMaxNumFunc< | 41 | 3.42k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 3.42k | null_aware); | 43 | 3.42k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 6 | static BasePtr get_function(bool null_aware) { | 39 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 6 | return new MinMaxNumFunc< | 41 | 6 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 6 | null_aware); | 43 | 6 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 113 | static BasePtr get_function(bool null_aware) { | 39 | 113 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 113 | return new MinMaxNumFunc< | 41 | 113 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 113 | null_aware); | 43 | 113 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 606 | static BasePtr get_function(bool null_aware) { | 39 | 606 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 606 | return new MinMaxNumFunc< | 41 | 606 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 606 | null_aware); | 43 | 606 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 748 | static BasePtr get_function(bool null_aware) { | 39 | 748 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 748 | return new MinMaxNumFunc< | 41 | 748 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 748 | null_aware); | 43 | 748 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 46 | static BasePtr get_function(bool null_aware) { | 39 | 46 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 46 | return new MinMaxNumFunc< | 41 | 46 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 46 | null_aware); | 43 | 46 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 829 | static BasePtr get_function(bool null_aware) { | 39 | 829 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 829 | return new MinMaxNumFunc< | 41 | 829 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 829 | null_aware); | 43 | 829 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 183 | static BasePtr get_function(bool null_aware) { | 39 | 183 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 183 | return new MinMaxNumFunc< | 41 | 183 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 183 | null_aware); | 43 | 183 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 57 | static BasePtr get_function(bool null_aware) { | 39 | 57 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 57 | return new MinMaxNumFunc< | 41 | 57 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 57 | null_aware); | 43 | 57 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 3 | static BasePtr get_function(bool null_aware) { | 39 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 3 | return new MinMaxNumFunc< | 41 | 3 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 3 | null_aware); | 43 | 3 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1 | static BasePtr get_function(bool null_aware) { | 39 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1 | return new MinMaxNumFunc< | 41 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1 | null_aware); | 43 | 1 | } |
|
44 | | }; |
45 | | |
46 | | class HybridSetTraits { |
47 | | public: |
48 | | using BasePtr = HybridSetBase*; |
49 | | template <PrimitiveType type, size_t N> |
50 | 55.2k | static BasePtr get_function(bool null_aware) { |
51 | 55.2k | if constexpr (is_string_type(type)) { |
52 | 1.34k | return new StringSet<>(null_aware); |
53 | 1.89k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
54 | 1.89k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 1.89k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
56 | 2.09k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
57 | 2.09k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 2.09k | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
59 | 49.9k | } else { |
60 | 49.9k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
61 | 49.9k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
62 | 49.9k | } |
63 | 55.2k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 234 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 234 | } else { | 60 | 234 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 234 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 234 | } | 63 | 234 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 2 | } else { | 60 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 2 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 2 | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.32k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1.32k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1.32k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1.32k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1.32k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 549 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 549 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 549 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 549 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 549 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 19.5k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 19.5k | } else { | 60 | 19.5k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 19.5k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 19.5k | } | 63 | 19.5k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 24.2k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 24.2k | } else { | 60 | 24.2k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 24.2k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 24.2k | } | 63 | 24.2k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 163 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 163 | } else { | 60 | 163 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 163 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 163 | } | 63 | 163 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 291 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 291 | } else { | 60 | 291 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 291 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 291 | } | 63 | 291 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 16 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 16 | } else { | 60 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 16 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 16 | } | 63 | 16 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 28 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 28 | } else { | 60 | 28 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 28 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 28 | } | 63 | 28 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 39 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 39 | } else { | 60 | 39 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 39 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 39 | } | 63 | 39 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.15k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 1.15k | } else { | 60 | 1.15k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 1.15k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 1.15k | } | 63 | 1.15k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3.43k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 3.43k | } else { | 60 | 3.43k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 3.43k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 3.43k | } | 63 | 3.43k | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 121 | static BasePtr get_function(bool null_aware) { | 51 | 121 | if constexpr (is_string_type(type)) { | 52 | 121 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 121 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 462 | static BasePtr get_function(bool null_aware) { | 51 | 462 | if constexpr (is_string_type(type)) { | 52 | 462 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 462 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 757 | static BasePtr get_function(bool null_aware) { | 51 | 757 | if constexpr (is_string_type(type)) { | 52 | 757 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 757 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 61 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 61 | } else { | 60 | 61 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 61 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 61 | } | 63 | 61 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 481 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 481 | } else { | 60 | 481 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 481 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 481 | } | 63 | 481 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 78 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 78 | } else { | 60 | 78 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 78 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 78 | } | 63 | 78 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 82 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 82 | } else { | 60 | 82 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 82 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 82 | } | 63 | 82 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 4 | } else { | 60 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 4 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 4 | } | 63 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 2 | } else { | 60 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 2 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 2 | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 6 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 457 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 457 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 457 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 457 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 457 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb 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_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 | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 787 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 787 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 787 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 787 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 787 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 255 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 255 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 255 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 255 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 255 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 33 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 33 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 33 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 33 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 33 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 41 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 41 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 41 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 41 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 41 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
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 | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 4 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 175 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 175 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 175 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 175 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 175 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 150 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 150 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 150 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 150 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 150 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
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 | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 27 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 27 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 27 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 27 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 27 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
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 | 50 | 9 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 9 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 9 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 9 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 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 | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
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 | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 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 | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm6EEEPNS_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 | 50 | 11 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 11 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 11 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 11 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 11 | } |
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 | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 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_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 | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 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 | 50 | 10 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 10 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 10 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 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_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 |
64 | | }; |
65 | | |
66 | | class BloomFilterTraits { |
67 | | public: |
68 | | using BasePtr = BloomFilterFuncBase*; |
69 | | template <PrimitiveType type, size_t N> |
70 | 50.1k | static BasePtr get_function(bool null_aware) { |
71 | 50.1k | return new BloomFilterFunc<type>(null_aware); |
72 | 50.1k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 223 | static BasePtr get_function(bool null_aware) { | 71 | 223 | return new BloomFilterFunc<type>(null_aware); | 72 | 223 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.06k | static BasePtr get_function(bool null_aware) { | 71 | 1.06k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.06k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 531 | static BasePtr get_function(bool null_aware) { | 71 | 531 | return new BloomFilterFunc<type>(null_aware); | 72 | 531 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 12.4k | static BasePtr get_function(bool null_aware) { | 71 | 12.4k | return new BloomFilterFunc<type>(null_aware); | 72 | 12.4k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 30.4k | static BasePtr get_function(bool null_aware) { | 71 | 30.4k | return new BloomFilterFunc<type>(null_aware); | 72 | 30.4k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 222 | static BasePtr get_function(bool null_aware) { | 71 | 222 | return new BloomFilterFunc<type>(null_aware); | 72 | 222 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 288 | static BasePtr get_function(bool null_aware) { | 71 | 288 | return new BloomFilterFunc<type>(null_aware); | 72 | 288 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 10 | static BasePtr get_function(bool null_aware) { | 71 | 10 | return new BloomFilterFunc<type>(null_aware); | 72 | 10 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.02k | static BasePtr get_function(bool null_aware) { | 71 | 1.02k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.02k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 877 | static BasePtr get_function(bool null_aware) { | 71 | 877 | return new BloomFilterFunc<type>(null_aware); | 72 | 877 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 9 | static BasePtr get_function(bool null_aware) { | 71 | 9 | return new BloomFilterFunc<type>(null_aware); | 72 | 9 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 75 | static BasePtr get_function(bool null_aware) { | 71 | 75 | return new BloomFilterFunc<type>(null_aware); | 72 | 75 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 893 | static BasePtr get_function(bool null_aware) { | 71 | 893 | return new BloomFilterFunc<type>(null_aware); | 72 | 893 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 790 | static BasePtr get_function(bool null_aware) { | 71 | 790 | return new BloomFilterFunc<type>(null_aware); | 72 | 790 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 25 | static BasePtr get_function(bool null_aware) { | 71 | 25 | return new BloomFilterFunc<type>(null_aware); | 72 | 25 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.00k | static BasePtr get_function(bool null_aware) { | 71 | 1.00k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.00k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 121 | static BasePtr get_function(bool null_aware) { | 71 | 121 | return new BloomFilterFunc<type>(null_aware); | 72 | 121 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 78 | static BasePtr get_function(bool null_aware) { | 71 | 78 | return new BloomFilterFunc<type>(null_aware); | 72 | 78 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb |
73 | | }; |
74 | | |
75 | | class BitmapFilterTraits { |
76 | | public: |
77 | | using BasePtr = BitmapFilterFuncBase*; |
78 | | template <PrimitiveType type, size_t N> |
79 | 171 | static BasePtr get_function(bool null_aware) { |
80 | 171 | return new BitmapFilterFunc<type>(null_aware); |
81 | 171 | } Unexecuted instantiation: _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_20BitmapFilterFuncBaseEb Unexecuted instantiation: _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_20BitmapFilterFuncBaseEb _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 79 | 9 | static BasePtr get_function(bool null_aware) { | 80 | 9 | return new BitmapFilterFunc<type>(null_aware); | 81 | 9 | } |
_ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 79 | 162 | static BasePtr get_function(bool null_aware) { | 80 | 162 | return new BitmapFilterFunc<type>(null_aware); | 81 | 162 | } |
|
82 | | }; |
83 | | |
84 | | template <class Traits> |
85 | | class PredicateFunctionCreator { |
86 | | public: |
87 | | template <PrimitiveType type, size_t N = 0> |
88 | 152k | static typename Traits::BasePtr create(bool null_aware) { |
89 | 152k | return Traits::template get_function<type, N>(null_aware); |
90 | 152k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 234 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 234 | return Traits::template get_function<type, N>(null_aware); | 90 | 234 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1.32k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.32k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.32k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 550 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 550 | return Traits::template get_function<type, N>(null_aware); | 90 | 550 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 19.5k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 19.5k | return Traits::template get_function<type, N>(null_aware); | 90 | 19.5k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 24.2k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 24.2k | return Traits::template get_function<type, N>(null_aware); | 90 | 24.2k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 163 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 163 | return Traits::template get_function<type, N>(null_aware); | 90 | 163 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 291 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 291 | return Traits::template get_function<type, N>(null_aware); | 90 | 291 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 16 | return Traits::template get_function<type, N>(null_aware); | 90 | 16 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 28 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 28 | return Traits::template get_function<type, N>(null_aware); | 90 | 28 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 39 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 39 | return Traits::template get_function<type, N>(null_aware); | 90 | 39 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1.15k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.15k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.15k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3.43k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3.43k | return Traits::template get_function<type, N>(null_aware); | 90 | 3.43k | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 121 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 121 | return Traits::template get_function<type, N>(null_aware); | 90 | 121 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 462 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 462 | return Traits::template get_function<type, N>(null_aware); | 90 | 462 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 757 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 757 | return Traits::template get_function<type, N>(null_aware); | 90 | 757 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 61 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 61 | return Traits::template get_function<type, N>(null_aware); | 90 | 61 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 481 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 481 | return Traits::template get_function<type, N>(null_aware); | 90 | 481 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 78 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 78 | return Traits::template get_function<type, N>(null_aware); | 90 | 78 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 82 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 82 | return Traits::template get_function<type, N>(null_aware); | 90 | 82 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 457 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 457 | return Traits::template get_function<type, N>(null_aware); | 90 | 457 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb 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_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 | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 787 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 787 | return Traits::template get_function<type, N>(null_aware); | 90 | 787 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 255 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 255 | return Traits::template get_function<type, N>(null_aware); | 90 | 255 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 33 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 33 | return Traits::template get_function<type, N>(null_aware); | 90 | 33 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 41 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 41 | return Traits::template get_function<type, N>(null_aware); | 90 | 41 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
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 | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 175 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 175 | return Traits::template get_function<type, N>(null_aware); | 90 | 175 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 150 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 150 | return Traits::template get_function<type, N>(null_aware); | 90 | 150 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
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 | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 27 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 27 | return Traits::template get_function<type, N>(null_aware); | 90 | 27 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
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 | 88 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9 | return Traits::template get_function<type, N>(null_aware); | 90 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 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 | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
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 | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 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 | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm6EEEPNS_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 | 88 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 11 | return Traits::template get_function<type, N>(null_aware); | 90 | 11 | } |
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 | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 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_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 | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 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 | 88 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 10 | return Traits::template get_function<type, N>(null_aware); | 90 | 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_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 _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 224 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 224 | return Traits::template get_function<type, N>(null_aware); | 90 | 224 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1.62k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.62k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.62k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 786 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 786 | return Traits::template get_function<type, N>(null_aware); | 90 | 786 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 16.6k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 16.6k | return Traits::template get_function<type, N>(null_aware); | 90 | 16.6k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 19.9k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 19.9k | return Traits::template get_function<type, N>(null_aware); | 90 | 19.9k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 256 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 256 | return Traits::template get_function<type, N>(null_aware); | 90 | 256 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 289 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 289 | return Traits::template get_function<type, N>(null_aware); | 90 | 289 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 49 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 49 | return Traits::template get_function<type, N>(null_aware); | 90 | 49 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 19 | return Traits::template get_function<type, N>(null_aware); | 90 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 26 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 26 | return Traits::template get_function<type, N>(null_aware); | 90 | 26 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 856 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 856 | return Traits::template get_function<type, N>(null_aware); | 90 | 856 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 3.42k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3.42k | return Traits::template get_function<type, N>(null_aware); | 90 | 3.42k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 113 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 113 | return Traits::template get_function<type, N>(null_aware); | 90 | 113 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 606 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 606 | return Traits::template get_function<type, N>(null_aware); | 90 | 606 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 748 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 748 | return Traits::template get_function<type, N>(null_aware); | 90 | 748 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 46 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 46 | return Traits::template get_function<type, N>(null_aware); | 90 | 46 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 829 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 829 | return Traits::template get_function<type, N>(null_aware); | 90 | 829 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 182 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 182 | return Traits::template get_function<type, N>(null_aware); | 90 | 182 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 57 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 57 | return Traits::template get_function<type, N>(null_aware); | 90 | 57 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 223 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 223 | return Traits::template get_function<type, N>(null_aware); | 90 | 223 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.06k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.06k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.06k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 531 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 531 | return Traits::template get_function<type, N>(null_aware); | 90 | 531 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 12.4k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 12.4k | return Traits::template get_function<type, N>(null_aware); | 90 | 12.4k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 30.4k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 30.4k | return Traits::template get_function<type, N>(null_aware); | 90 | 30.4k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 222 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 222 | return Traits::template get_function<type, N>(null_aware); | 90 | 222 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 288 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 288 | return Traits::template get_function<type, N>(null_aware); | 90 | 288 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 10 | return Traits::template get_function<type, N>(null_aware); | 90 | 10 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.02k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.02k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.02k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 877 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 877 | return Traits::template get_function<type, N>(null_aware); | 90 | 877 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9 | return Traits::template get_function<type, N>(null_aware); | 90 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 75 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 75 | return Traits::template get_function<type, N>(null_aware); | 90 | 75 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 893 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 893 | return Traits::template get_function<type, N>(null_aware); | 90 | 893 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 790 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 790 | return Traits::template get_function<type, N>(null_aware); | 90 | 790 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 25 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 25 | return Traits::template get_function<type, N>(null_aware); | 90 | 25 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.00k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.00k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.00k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 121 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 121 | return Traits::template get_function<type, N>(null_aware); | 90 | 121 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 78 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 78 | return Traits::template get_function<type, N>(null_aware); | 90 | 78 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_20BitmapFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_20BitmapFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 88 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9 | return Traits::template get_function<type, N>(null_aware); | 90 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 88 | 162 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 162 | return Traits::template get_function<type, N>(null_aware); | 90 | 162 | } |
|
91 | | }; |
92 | | |
93 | | #define APPLY_FOR_PRIMTYPE(M) \ |
94 | 4.02k | M(TYPE_TINYINT) \ |
95 | 4.02k | M(TYPE_SMALLINT) \ |
96 | 50.1k | M(TYPE_INT) \ |
97 | 75.1k | M(TYPE_BIGINT) \ |
98 | 75.1k | M(TYPE_LARGEINT) \ |
99 | 871 | M(TYPE_FLOAT) \ |
100 | 871 | M(TYPE_DOUBLE) \ |
101 | 75 | M(TYPE_DATE) \ |
102 | 85 | M(TYPE_DATETIME) \ |
103 | 3.06k | M(TYPE_DATEV2) \ |
104 | 7.77k | M(TYPE_DATETIMEV2) \ |
105 | 7.77k | M(TYPE_TIMESTAMPTZ) \ |
106 | 319 | M(TYPE_CHAR) \ |
107 | 2.33k | M(TYPE_VARCHAR) \ |
108 | 2.33k | M(TYPE_STRING) \ |
109 | 2.33k | M(TYPE_DECIMAL32) \ |
110 | 2.32k | M(TYPE_DECIMAL64) \ |
111 | 2.32k | M(TYPE_DECIMAL128I) \ |
112 | 391 | M(TYPE_DECIMAL256) \ |
113 | 225 | M(TYPE_IPV4) \ |
114 | 24 | M(TYPE_IPV6) |
115 | | |
116 | | template <class Traits, size_t N = 0> |
117 | 152k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
118 | 152k | using Creator = PredicateFunctionCreator<Traits>; |
119 | | |
120 | 152k | switch (type) { |
121 | 684 | case TYPE_BOOLEAN: { |
122 | 684 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
123 | 0 | } |
124 | 4 | case TYPE_DECIMALV2: { |
125 | 4 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
126 | 0 | } |
127 | 0 | #define M(NAME) \ |
128 | 151k | case NAME: { \ |
129 | 151k | return Creator::template create<NAME, N>(null_aware); \ |
130 | 151k | } |
131 | 151k | APPLY_FOR_PRIMTYPE(M) |
132 | 0 | #undef M |
133 | 0 | default: |
134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); |
135 | 152k | } |
136 | | |
137 | 0 | return nullptr; |
138 | 152k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 53.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 53.1k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 53.1k | switch (type) { | 121 | 234 | case TYPE_BOOLEAN: { | 122 | 234 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 2 | case TYPE_DECIMALV2: { | 125 | 2 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 2 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 53.1k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 53.1k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 481 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 481 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 481 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 481 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 481 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 1.17k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 1.17k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 1.17k | switch (type) { | 121 | 3 | case TYPE_BOOLEAN: { | 122 | 3 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 1.17k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 1.17k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 363 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 363 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 363 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 1 | case TYPE_DECIMALV2: { | 125 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 1 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 363 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 363 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 51 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 51 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 51 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 51 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 51 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 20 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 20 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 20 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 20 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 20 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 9 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 9 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 9 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 9 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 9 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 15 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 15 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 15 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 15 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 15 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm8EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 10 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 10 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 10 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 10 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 10 | } |
_ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 46.7k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 46.7k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 46.7k | switch (type) { | 121 | 224 | case TYPE_BOOLEAN: { | 122 | 224 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 1 | case TYPE_DECIMALV2: { | 125 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 1 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 46.7k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 46.7k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 50.2k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 50.2k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 50.2k | switch (type) { | 121 | 223 | case TYPE_BOOLEAN: { | 122 | 223 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 50.2k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 50.2k | } |
|
139 | | |
140 | | template <class Traits> |
141 | 171 | typename Traits::BasePtr create_bitmap_predicate_function(PrimitiveType type) { |
142 | 171 | using Creator = PredicateFunctionCreator<Traits>; |
143 | | |
144 | 171 | switch (type) { |
145 | 0 | case TYPE_TINYINT: |
146 | 0 | return Creator::template create<TYPE_TINYINT>(false); |
147 | 0 | case TYPE_SMALLINT: |
148 | 0 | return Creator::template create<TYPE_SMALLINT>(false); |
149 | 9 | case TYPE_INT: |
150 | 9 | return Creator::template create<TYPE_INT>(false); |
151 | 162 | case TYPE_BIGINT: |
152 | 162 | return Creator::template create<TYPE_BIGINT>(false); |
153 | 0 | default: |
154 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, |
155 | 0 | "bitmap predicate with type " + type_to_string(type)); |
156 | 171 | } |
157 | | |
158 | 0 | return nullptr; |
159 | 171 | } |
160 | | |
161 | 46.8k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
162 | 46.8k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
163 | 46.8k | } |
164 | | |
165 | | template <size_t N = 0> |
166 | 55.2k | inline auto create_set(PrimitiveType type, bool null_aware) { |
167 | 55.2k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
168 | 55.2k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 53.1k | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 53.1k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 53.1k | } |
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 481 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 481 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 481 | } |
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 1.17k | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 1.17k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 1.17k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 363 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 363 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 363 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 51 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 51 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 51 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 20 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 20 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 20 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 9 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 9 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 9 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 15 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 15 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 15 | } |
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 10 | } |
|
169 | | |
170 | 2.26k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
171 | 2.26k | if (size == 0) { |
172 | 12 | return create_set<0>(type, null_aware); |
173 | 2.25k | } else if (size == 1) { |
174 | 479 | return create_set<1>(type, null_aware); |
175 | 1.77k | } else if (size == 2) { |
176 | 1.16k | return create_set<2>(type, null_aware); |
177 | 1.16k | } else if (size == 3) { |
178 | 343 | return create_set<3>(type, null_aware); |
179 | 343 | } else if (size == 4) { |
180 | 49 | return create_set<4>(type, null_aware); |
181 | 211 | } else if (size == 5) { |
182 | 18 | return create_set<5>(type, null_aware); |
183 | 193 | } else if (size == 6) { |
184 | 7 | return create_set<6>(type, null_aware); |
185 | 186 | } else if (size == 7) { |
186 | 13 | return create_set<7>(type, null_aware); |
187 | 173 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
188 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
189 | 166 | } else { |
190 | 166 | return create_set(type, null_aware); |
191 | 166 | } |
192 | 2.26k | } |
193 | | |
194 | 516 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
195 | 516 | return new StringValueSet(null_aware); |
196 | 516 | } |
197 | | |
198 | 516 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
199 | 516 | return create_string_value_set(null_aware); |
200 | 516 | } |
201 | | |
202 | 50.1k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
203 | 50.1k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
204 | 50.1k | } |
205 | | |
206 | 171 | inline auto create_bitmap_filter(PrimitiveType type) { |
207 | 171 | return create_bitmap_predicate_function<BitmapFilterTraits>(type); |
208 | 171 | } |
209 | | |
210 | | template <PrimitiveType PT> |
211 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
212 | | uint32_t column_id, const std::shared_ptr<BloomFilterFuncBase>& filter, const TabletColumn*, |
213 | | bool null_aware) { |
214 | | std::shared_ptr<BloomFilterFuncBase> filter_olap; |
215 | | filter_olap.reset(create_bloom_filter(PT, null_aware)); |
216 | | filter_olap->light_copy(filter.get()); |
217 | | // create a new filter to match the input filter and PT. For example, filter may be varchar, but PT is char |
218 | | return BloomFilterColumnPredicate<PT>::create_shared(column_id, filter_olap); |
219 | | } |
220 | | |
221 | | template <PrimitiveType PT> |
222 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
223 | | uint32_t column_id, const std::shared_ptr<BitmapFilterFuncBase>& filter, |
224 | | const TabletColumn*, bool) { |
225 | | if constexpr (PT == TYPE_TINYINT || PT == TYPE_SMALLINT || PT == TYPE_INT || |
226 | | PT == TYPE_BIGINT) { |
227 | | return BitmapFilterColumnPredicate<PT>::create_shared(column_id, filter); |
228 | | } else { |
229 | | throw Exception(ErrorCode::INTERNAL_ERROR, "bitmap filter do not support type {}", PT); |
230 | | } |
231 | | } |
232 | | |
233 | | template <PrimitiveType PT> |
234 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
235 | | uint32_t column_id, const std::shared_ptr<HybridSetBase>& filter, |
236 | | const TabletColumn* column, bool) { |
237 | | return create_in_list_predicate<PT, PredicateType::IN_LIST>(column_id, filter, |
238 | | column->length()); |
239 | | } |
240 | | |
241 | | template <PrimitiveType PT> |
242 | | std::shared_ptr<ColumnPredicate> create_olap_column_predicate( |
243 | | uint32_t column_id, const std::shared_ptr<FunctionFilter>& filter, |
244 | 422 | const TabletColumn* column, bool) { |
245 | | // currently only support like predicate |
246 | 422 | if constexpr (PT == TYPE_CHAR) { |
247 | 10 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, |
248 | 10 | column->name(), filter->_fn_ctx, |
249 | 10 | filter->_string_param); |
250 | 412 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { |
251 | 412 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, |
252 | 412 | column->name(), filter->_fn_ctx, |
253 | 412 | filter->_string_param); |
254 | 412 | } |
255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); |
256 | 422 | } Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE3EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE4EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE5EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE6EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE7EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE8EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE9EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE11EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE12EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE25EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE26EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE42EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE15EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 10 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | 10 | if constexpr (PT == TYPE_CHAR) { | 247 | 10 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | 10 | column->name(), filter->_fn_ctx, | 249 | 10 | filter->_string_param); | 250 | | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | | column->name(), filter->_fn_ctx, | 253 | | filter->_string_param); | 254 | | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 10 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 369 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | | if constexpr (PT == TYPE_CHAR) { | 247 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | | column->name(), filter->_fn_ctx, | 249 | | filter->_string_param); | 250 | 369 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | 369 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | 369 | column->name(), filter->_fn_ctx, | 253 | 369 | filter->_string_param); | 254 | 369 | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 369 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 43 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | | if constexpr (PT == TYPE_CHAR) { | 247 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | | column->name(), filter->_fn_ctx, | 249 | | filter->_string_param); | 250 | 43 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | 43 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | 43 | column->name(), filter->_fn_ctx, | 253 | 43 | filter->_string_param); | 254 | 43 | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 43 | } |
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE28EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE29EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE30EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE35EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE36EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE37EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE20EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE2EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb |
257 | | |
258 | | template <typename T> |
259 | | std::shared_ptr<ColumnPredicate> create_column_predicate(uint32_t column_id, |
260 | | const std::shared_ptr<T>& filter, |
261 | | FieldType type, const TabletColumn* column, |
262 | 424 | bool null_aware = false) { |
263 | 424 | switch (type) { |
264 | 0 | #define M(NAME) \ |
265 | 423 | case FieldType::OLAP_FIELD_##NAME: { \ |
266 | 423 | return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \ |
267 | 423 | } |
268 | 423 | APPLY_FOR_PRIMTYPE(M) |
269 | 0 | #undef M |
270 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL: { |
271 | 0 | return create_olap_column_predicate<TYPE_DECIMALV2>(column_id, filter, column, null_aware); |
272 | 0 | } |
273 | 0 | case FieldType::OLAP_FIELD_TYPE_BOOL: { |
274 | 0 | return create_olap_column_predicate<TYPE_BOOLEAN>(column_id, filter, column, null_aware); |
275 | 0 | } |
276 | 0 | default: |
277 | 0 | return nullptr; |
278 | 424 | } |
279 | 424 | } |
280 | | |
281 | | } // namespace doris |