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/bloom_filter_predicate.h" |
27 | | #include "storage/predicate/column_predicate.h" |
28 | | #include "storage/predicate/in_list_predicate.h" |
29 | | #include "storage/predicate/like_column_predicate.h" |
30 | | |
31 | | namespace doris { |
32 | | |
33 | | class MinmaxFunctionTraits { |
34 | | public: |
35 | | using BasePtr = MinMaxFuncBase*; |
36 | | template <PrimitiveType type, size_t N> |
37 | 22.1k | static BasePtr get_function(bool null_aware) { |
38 | 22.1k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
39 | 22.1k | return new MinMaxNumFunc< |
40 | 22.1k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
41 | 22.1k | null_aware); |
42 | 22.1k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 217 | static BasePtr get_function(bool null_aware) { | 38 | 217 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 217 | return new MinMaxNumFunc< | 40 | 217 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 217 | null_aware); | 42 | 217 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 35 | static BasePtr get_function(bool null_aware) { | 38 | 35 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 35 | return new MinMaxNumFunc< | 40 | 35 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 35 | null_aware); | 42 | 35 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 1.64k | static BasePtr get_function(bool null_aware) { | 38 | 1.64k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 1.64k | return new MinMaxNumFunc< | 40 | 1.64k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 1.64k | null_aware); | 42 | 1.64k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 1.10k | static BasePtr get_function(bool null_aware) { | 38 | 1.10k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 1.10k | return new MinMaxNumFunc< | 40 | 1.10k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 1.10k | null_aware); | 42 | 1.10k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 9.97k | static BasePtr get_function(bool null_aware) { | 38 | 9.97k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 9.97k | return new MinMaxNumFunc< | 40 | 9.97k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 9.97k | null_aware); | 42 | 9.97k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 4.05k | static BasePtr get_function(bool null_aware) { | 38 | 4.05k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 4.05k | return new MinMaxNumFunc< | 40 | 4.05k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 4.05k | null_aware); | 42 | 4.05k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 196 | static BasePtr get_function(bool null_aware) { | 38 | 196 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 196 | return new MinMaxNumFunc< | 40 | 196 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 196 | null_aware); | 42 | 196 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 289 | static BasePtr get_function(bool null_aware) { | 38 | 289 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 289 | return new MinMaxNumFunc< | 40 | 289 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 289 | null_aware); | 42 | 289 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 27 | static BasePtr get_function(bool null_aware) { | 38 | 27 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 27 | return new MinMaxNumFunc< | 40 | 27 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 27 | null_aware); | 42 | 27 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 1 | static BasePtr get_function(bool null_aware) { | 38 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 1 | return new MinMaxNumFunc< | 40 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 1 | null_aware); | 42 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 24 | static BasePtr get_function(bool null_aware) { | 38 | 24 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 24 | return new MinMaxNumFunc< | 40 | 24 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 24 | null_aware); | 42 | 24 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 968 | static BasePtr get_function(bool null_aware) { | 38 | 968 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 968 | return new MinMaxNumFunc< | 40 | 968 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 968 | null_aware); | 42 | 968 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 1.02k | static BasePtr get_function(bool null_aware) { | 38 | 1.02k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 1.02k | return new MinMaxNumFunc< | 40 | 1.02k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 1.02k | null_aware); | 42 | 1.02k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 6 | static BasePtr get_function(bool null_aware) { | 38 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 6 | return new MinMaxNumFunc< | 40 | 6 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 6 | null_aware); | 42 | 6 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 122 | static BasePtr get_function(bool null_aware) { | 38 | 122 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 122 | return new MinMaxNumFunc< | 40 | 122 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 122 | null_aware); | 42 | 122 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 589 | static BasePtr get_function(bool null_aware) { | 38 | 589 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 589 | return new MinMaxNumFunc< | 40 | 589 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 589 | null_aware); | 42 | 589 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 730 | static BasePtr get_function(bool null_aware) { | 38 | 730 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 730 | return new MinMaxNumFunc< | 40 | 730 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 730 | null_aware); | 42 | 730 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 142 | static BasePtr get_function(bool null_aware) { | 38 | 142 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 142 | return new MinMaxNumFunc< | 40 | 142 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 142 | null_aware); | 42 | 142 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 784 | static BasePtr get_function(bool null_aware) { | 38 | 784 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 784 | return new MinMaxNumFunc< | 40 | 784 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 784 | null_aware); | 42 | 784 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 142 | static BasePtr get_function(bool null_aware) { | 38 | 142 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 142 | return new MinMaxNumFunc< | 40 | 142 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 142 | null_aware); | 42 | 142 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 77 | static BasePtr get_function(bool null_aware) { | 38 | 77 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 77 | return new MinMaxNumFunc< | 40 | 77 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 77 | null_aware); | 42 | 77 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 11 | static BasePtr get_function(bool null_aware) { | 38 | 11 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 11 | return new MinMaxNumFunc< | 40 | 11 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 11 | null_aware); | 42 | 11 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 37 | 1 | static BasePtr get_function(bool null_aware) { | 38 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 39 | 1 | return new MinMaxNumFunc< | 40 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 41 | 1 | null_aware); | 42 | 1 | } |
|
43 | | }; |
44 | | |
45 | | class HybridSetTraits { |
46 | | public: |
47 | | using BasePtr = HybridSetBase*; |
48 | | template <PrimitiveType type, size_t N> |
49 | 32.4k | static BasePtr get_function(bool null_aware) { |
50 | 32.4k | if constexpr (is_string_type(type)) { |
51 | 1.60k | return new StringSet<>(null_aware); |
52 | 1.60k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
53 | 861 | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
54 | 861 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
55 | 2.18k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
56 | 2.18k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
57 | 2.18k | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
58 | 27.7k | } else { |
59 | 27.7k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
60 | 27.7k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
61 | 27.7k | } |
62 | 32.4k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 227 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 227 | } else { | 59 | 227 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 227 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 227 | } | 62 | 227 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 71 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 71 | } else { | 59 | 71 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 71 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 71 | } | 62 | 71 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 466 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 466 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 466 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 466 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 466 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 372 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 372 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 372 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 372 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 372 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 16.2k | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 16.2k | } else { | 59 | 16.2k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 16.2k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 16.2k | } | 62 | 16.2k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 5.06k | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 5.06k | } else { | 59 | 5.06k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 5.06k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 5.06k | } | 62 | 5.06k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 153 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 153 | } else { | 59 | 153 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 153 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 153 | } | 62 | 153 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 292 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 292 | } else { | 59 | 292 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 292 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 292 | } | 62 | 292 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 26 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 26 | } else { | 59 | 26 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 26 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 26 | } | 62 | 26 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 28 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 28 | } else { | 59 | 28 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 28 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 28 | } | 62 | 28 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 27 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 27 | } else { | 59 | 27 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 27 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 27 | } | 62 | 27 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1.18k | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 1.18k | } else { | 59 | 1.18k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 1.18k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 1.18k | } | 62 | 1.18k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3.53k | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 3.53k | } else { | 59 | 3.53k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 3.53k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 3.53k | } | 62 | 3.53k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 1 | } else { | 59 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 1 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 1 | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 36 | static BasePtr get_function(bool null_aware) { | 50 | 36 | if constexpr (is_string_type(type)) { | 51 | 36 | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 36 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 817 | static BasePtr get_function(bool null_aware) { | 50 | 817 | if constexpr (is_string_type(type)) { | 51 | 817 | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 817 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 754 | static BasePtr get_function(bool null_aware) { | 50 | 754 | if constexpr (is_string_type(type)) { | 51 | 754 | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 754 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 75 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 75 | } else { | 59 | 75 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 75 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 75 | } | 62 | 75 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 693 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 693 | } else { | 59 | 693 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 693 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 693 | } | 62 | 693 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 117 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 117 | } else { | 59 | 117 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 117 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 117 | } | 62 | 117 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 61 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 61 | } else { | 59 | 61 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 61 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 61 | } | 62 | 61 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 21 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 21 | } else { | 59 | 21 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 21 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 21 | } | 62 | 21 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 11 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | 11 | } else { | 59 | 11 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | 11 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | 11 | } | 62 | 11 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 6 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 6 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 6 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 457 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 457 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 457 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 457 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 457 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 5 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 8 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 5 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 840 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 840 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 840 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 840 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 840 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 259 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 259 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 259 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 259 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 259 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 33 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 33 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 33 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 33 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 33 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 41 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 41 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 41 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 41 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 41 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 5 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 8 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 5 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 9 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 9 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 9 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 9 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 8 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 4 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 4 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 4 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 5 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 183 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 183 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 183 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 183 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 183 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 159 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 159 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 159 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 159 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 159 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 5 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 39 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 39 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 39 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 39 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 39 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 3 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 6 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 6 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 8 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 8 | } |
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 | 49 | 9 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 9 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 9 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 9 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 4 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 4 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 4 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 49 | 1 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 11 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 11 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 11 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 11 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 2 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 | 49 | 10 | static BasePtr get_function(bool null_aware) { | 50 | | if constexpr (is_string_type(type)) { | 51 | | return new StringSet<>(null_aware); | 52 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 53 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 54 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 55 | 10 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 56 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 57 | 10 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 58 | | } else { | 59 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 60 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 61 | | } | 62 | 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 |
63 | | }; |
64 | | |
65 | | class BloomFilterTraits { |
66 | | public: |
67 | | using BasePtr = BloomFilterFuncBase*; |
68 | | template <PrimitiveType type, size_t N> |
69 | 31.4k | static BasePtr get_function(bool null_aware) { |
70 | 31.4k | return new BloomFilterFunc<type>(null_aware); |
71 | 31.4k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 227 | static BasePtr get_function(bool null_aware) { | 70 | 227 | return new BloomFilterFunc<type>(null_aware); | 71 | 227 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 72 | static BasePtr get_function(bool null_aware) { | 70 | 72 | return new BloomFilterFunc<type>(null_aware); | 71 | 72 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 1.94k | static BasePtr get_function(bool null_aware) { | 70 | 1.94k | return new BloomFilterFunc<type>(null_aware); | 71 | 1.94k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 1.25k | static BasePtr get_function(bool null_aware) { | 70 | 1.25k | return new BloomFilterFunc<type>(null_aware); | 71 | 1.25k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 14.7k | static BasePtr get_function(bool null_aware) { | 70 | 14.7k | return new BloomFilterFunc<type>(null_aware); | 71 | 14.7k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 5.28k | static BasePtr get_function(bool null_aware) { | 70 | 5.28k | return new BloomFilterFunc<type>(null_aware); | 71 | 5.28k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 269 | static BasePtr get_function(bool null_aware) { | 70 | 269 | return new BloomFilterFunc<type>(null_aware); | 71 | 269 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 288 | static BasePtr get_function(bool null_aware) { | 70 | 288 | return new BloomFilterFunc<type>(null_aware); | 71 | 288 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 23 | static BasePtr get_function(bool null_aware) { | 70 | 23 | return new BloomFilterFunc<type>(null_aware); | 71 | 23 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 21 | static BasePtr get_function(bool null_aware) { | 70 | 21 | return new BloomFilterFunc<type>(null_aware); | 71 | 21 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 42 | static BasePtr get_function(bool null_aware) { | 70 | 42 | return new BloomFilterFunc<type>(null_aware); | 71 | 42 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 1.13k | static BasePtr get_function(bool null_aware) { | 70 | 1.13k | return new BloomFilterFunc<type>(null_aware); | 71 | 1.13k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 3.71k | static BasePtr get_function(bool null_aware) { | 70 | 3.71k | return new BloomFilterFunc<type>(null_aware); | 71 | 3.71k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 9 | static BasePtr get_function(bool null_aware) { | 70 | 9 | return new BloomFilterFunc<type>(null_aware); | 71 | 9 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 193 | static BasePtr get_function(bool null_aware) { | 70 | 193 | return new BloomFilterFunc<type>(null_aware); | 71 | 193 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 537 | static BasePtr get_function(bool null_aware) { | 70 | 537 | return new BloomFilterFunc<type>(null_aware); | 71 | 537 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 730 | static BasePtr get_function(bool null_aware) { | 70 | 730 | return new BloomFilterFunc<type>(null_aware); | 71 | 730 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 180 | static BasePtr get_function(bool null_aware) { | 70 | 180 | return new BloomFilterFunc<type>(null_aware); | 71 | 180 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 680 | static BasePtr get_function(bool null_aware) { | 70 | 680 | return new BloomFilterFunc<type>(null_aware); | 71 | 680 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 74 | static BasePtr get_function(bool null_aware) { | 70 | 74 | return new BloomFilterFunc<type>(null_aware); | 71 | 74 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 69 | 90 | static BasePtr get_function(bool null_aware) { | 70 | 90 | return new BloomFilterFunc<type>(null_aware); | 71 | 90 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb |
72 | | }; |
73 | | |
74 | | template <class Traits> |
75 | | class PredicateFunctionCreator { |
76 | | public: |
77 | | template <PrimitiveType type, size_t N = 0> |
78 | 86.0k | static typename Traits::BasePtr create(bool null_aware) { |
79 | 86.0k | return Traits::template get_function<type, N>(null_aware); |
80 | 86.0k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 227 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 227 | return Traits::template get_function<type, N>(null_aware); | 80 | 227 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 71 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 71 | return Traits::template get_function<type, N>(null_aware); | 80 | 71 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 465 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 465 | return Traits::template get_function<type, N>(null_aware); | 80 | 465 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 372 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 372 | return Traits::template get_function<type, N>(null_aware); | 80 | 372 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 16.2k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 16.2k | return Traits::template get_function<type, N>(null_aware); | 80 | 16.2k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 5.07k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5.07k | return Traits::template get_function<type, N>(null_aware); | 80 | 5.07k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 153 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 153 | return Traits::template get_function<type, N>(null_aware); | 80 | 153 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 292 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 292 | return Traits::template get_function<type, N>(null_aware); | 80 | 292 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 26 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 26 | return Traits::template get_function<type, N>(null_aware); | 80 | 26 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 28 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 28 | return Traits::template get_function<type, N>(null_aware); | 80 | 28 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 27 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 27 | return Traits::template get_function<type, N>(null_aware); | 80 | 27 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1.18k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.18k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.18k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3.53k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3.53k | return Traits::template get_function<type, N>(null_aware); | 80 | 3.53k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 36 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 36 | return Traits::template get_function<type, N>(null_aware); | 80 | 36 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 817 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 817 | return Traits::template get_function<type, N>(null_aware); | 80 | 817 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 754 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 754 | return Traits::template get_function<type, N>(null_aware); | 80 | 754 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 75 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 75 | return Traits::template get_function<type, N>(null_aware); | 80 | 75 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 693 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 693 | return Traits::template get_function<type, N>(null_aware); | 80 | 693 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 117 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 117 | return Traits::template get_function<type, N>(null_aware); | 80 | 117 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 61 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 61 | return Traits::template get_function<type, N>(null_aware); | 80 | 61 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 21 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 21 | return Traits::template get_function<type, N>(null_aware); | 80 | 21 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 11 | return Traits::template get_function<type, N>(null_aware); | 80 | 11 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 6 | return Traits::template get_function<type, N>(null_aware); | 80 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 457 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 457 | return Traits::template get_function<type, N>(null_aware); | 80 | 457 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 8 | return Traits::template get_function<type, N>(null_aware); | 80 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5 | return Traits::template get_function<type, N>(null_aware); | 80 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 840 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 840 | return Traits::template get_function<type, N>(null_aware); | 80 | 840 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 259 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 259 | return Traits::template get_function<type, N>(null_aware); | 80 | 259 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 33 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 33 | return Traits::template get_function<type, N>(null_aware); | 80 | 33 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 41 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 41 | return Traits::template get_function<type, N>(null_aware); | 80 | 41 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5 | return Traits::template get_function<type, N>(null_aware); | 80 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 8 | return Traits::template get_function<type, N>(null_aware); | 80 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5 | return Traits::template get_function<type, N>(null_aware); | 80 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 9 | return Traits::template get_function<type, N>(null_aware); | 80 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 8 | return Traits::template get_function<type, N>(null_aware); | 80 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 4 | return Traits::template get_function<type, N>(null_aware); | 80 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5 | return Traits::template get_function<type, N>(null_aware); | 80 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 183 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 183 | return Traits::template get_function<type, N>(null_aware); | 80 | 183 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 159 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 159 | return Traits::template get_function<type, N>(null_aware); | 80 | 159 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 39 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 39 | return Traits::template get_function<type, N>(null_aware); | 80 | 39 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3 | return Traits::template get_function<type, N>(null_aware); | 80 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 6 | return Traits::template get_function<type, N>(null_aware); | 80 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 6 | return Traits::template get_function<type, N>(null_aware); | 80 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 8 | return Traits::template get_function<type, N>(null_aware); | 80 | 8 | } |
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 | 78 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 9 | return Traits::template get_function<type, N>(null_aware); | 80 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 4 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 4 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 4 | return Traits::template get_function<type, N>(null_aware); | 80 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 11 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 2 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 10 | return Traits::template get_function<type, N>(null_aware); | 80 | 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 | 78 | 217 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 217 | return Traits::template get_function<type, N>(null_aware); | 80 | 217 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 35 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 35 | return Traits::template get_function<type, N>(null_aware); | 80 | 35 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 1.64k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.64k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.64k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 1.10k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.10k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.10k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 9.97k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 9.97k | return Traits::template get_function<type, N>(null_aware); | 80 | 9.97k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 4.05k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 4.05k | return Traits::template get_function<type, N>(null_aware); | 80 | 4.05k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 196 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 196 | return Traits::template get_function<type, N>(null_aware); | 80 | 196 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 289 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 289 | return Traits::template get_function<type, N>(null_aware); | 80 | 289 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 27 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 27 | return Traits::template get_function<type, N>(null_aware); | 80 | 27 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 24 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 24 | return Traits::template get_function<type, N>(null_aware); | 80 | 24 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 968 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 968 | return Traits::template get_function<type, N>(null_aware); | 80 | 968 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 1.02k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.02k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.02k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 6 | return Traits::template get_function<type, N>(null_aware); | 80 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 122 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 122 | return Traits::template get_function<type, N>(null_aware); | 80 | 122 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 589 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 589 | return Traits::template get_function<type, N>(null_aware); | 80 | 589 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 730 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 730 | return Traits::template get_function<type, N>(null_aware); | 80 | 730 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 142 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 142 | return Traits::template get_function<type, N>(null_aware); | 80 | 142 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 784 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 784 | return Traits::template get_function<type, N>(null_aware); | 80 | 784 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 142 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 142 | return Traits::template get_function<type, N>(null_aware); | 80 | 142 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 77 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 77 | return Traits::template get_function<type, N>(null_aware); | 80 | 77 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 11 | return Traits::template get_function<type, N>(null_aware); | 80 | 11 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 78 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1 | return Traits::template get_function<type, N>(null_aware); | 80 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 227 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 227 | return Traits::template get_function<type, N>(null_aware); | 80 | 227 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 72 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 72 | return Traits::template get_function<type, N>(null_aware); | 80 | 72 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 1.94k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.94k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.94k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 1.25k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.25k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.25k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 14.7k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 14.7k | return Traits::template get_function<type, N>(null_aware); | 80 | 14.7k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 5.28k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 5.28k | return Traits::template get_function<type, N>(null_aware); | 80 | 5.28k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 268 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 268 | return Traits::template get_function<type, N>(null_aware); | 80 | 268 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 288 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 288 | return Traits::template get_function<type, N>(null_aware); | 80 | 288 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 23 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 23 | return Traits::template get_function<type, N>(null_aware); | 80 | 23 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 21 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 21 | return Traits::template get_function<type, N>(null_aware); | 80 | 21 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 42 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 42 | return Traits::template get_function<type, N>(null_aware); | 80 | 42 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 1.13k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 1.13k | return Traits::template get_function<type, N>(null_aware); | 80 | 1.13k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 3.71k | static typename Traits::BasePtr create(bool null_aware) { | 79 | 3.71k | return Traits::template get_function<type, N>(null_aware); | 80 | 3.71k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 9 | return Traits::template get_function<type, N>(null_aware); | 80 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 193 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 193 | return Traits::template get_function<type, N>(null_aware); | 80 | 193 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 537 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 537 | return Traits::template get_function<type, N>(null_aware); | 80 | 537 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 730 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 730 | return Traits::template get_function<type, N>(null_aware); | 80 | 730 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 181 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 181 | return Traits::template get_function<type, N>(null_aware); | 80 | 181 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 680 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 680 | return Traits::template get_function<type, N>(null_aware); | 80 | 680 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 74 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 74 | return Traits::template get_function<type, N>(null_aware); | 80 | 74 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 78 | 90 | static typename Traits::BasePtr create(bool null_aware) { | 79 | 90 | return Traits::template get_function<type, N>(null_aware); | 80 | 90 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb |
81 | | }; |
82 | | |
83 | | #define APPLY_FOR_PRIMTYPE(M) \ |
84 | 4.07k | M(TYPE_TINYINT) \ |
85 | 4.07k | M(TYPE_SMALLINT) \ |
86 | 42.4k | M(TYPE_INT) \ |
87 | 42.4k | M(TYPE_BIGINT) \ |
88 | 14.8k | M(TYPE_LARGEINT) \ |
89 | 872 | M(TYPE_FLOAT) \ |
90 | 872 | M(TYPE_DOUBLE) \ |
91 | 86 | M(TYPE_DATE) \ |
92 | 103 | M(TYPE_DATETIME) \ |
93 | 3.32k | M(TYPE_DATEV2) \ |
94 | 8.32k | M(TYPE_DATETIMEV2) \ |
95 | 8.32k | M(TYPE_TIMESTAMPTZ) \ |
96 | 366 | M(TYPE_CHAR) \ |
97 | 2.19k | M(TYPE_VARCHAR) \ |
98 | 2.24k | M(TYPE_STRING) \ |
99 | 2.24k | M(TYPE_DECIMAL32) \ |
100 | 2.16k | M(TYPE_DECIMAL64) \ |
101 | 2.16k | M(TYPE_DECIMAL128I) \ |
102 | 343 | M(TYPE_DECIMAL256) \ |
103 | 236 | M(TYPE_IPV4) \ |
104 | 50 | M(TYPE_IPV6) |
105 | | |
106 | | template <class Traits, size_t N = 0> |
107 | 86.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
108 | 86.1k | using Creator = PredicateFunctionCreator<Traits>; |
109 | | |
110 | 86.1k | switch (type) { |
111 | 674 | case TYPE_BOOLEAN: { |
112 | 674 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
113 | 0 | } |
114 | 179 | case TYPE_DECIMALV2: { |
115 | 179 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
116 | 0 | } |
117 | 0 | #define M(NAME) \ |
118 | 85.2k | case NAME: { \ |
119 | 85.2k | return Creator::template create<NAME, N>(null_aware); \ |
120 | 85.2k | } |
121 | 85.2k | APPLY_FOR_PRIMTYPE(M) |
122 | 0 | #undef M |
123 | 0 | default: |
124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); |
125 | 86.1k | } |
126 | | |
127 | 0 | return nullptr; |
128 | 86.1k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 30.2k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 30.2k | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 30.2k | switch (type) { | 111 | 227 | case TYPE_BOOLEAN: { | 112 | 227 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 71 | case TYPE_DECIMALV2: { | 115 | 71 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 71 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 30.2k | } | 126 | | | 127 | 0 | return nullptr; | 128 | 30.2k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 481 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 481 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 481 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 481 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 481 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 1.22k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 1.22k | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 1.22k | switch (type) { | 111 | 3 | case TYPE_BOOLEAN: { | 112 | 3 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 1.22k | } | 126 | | | 127 | 0 | return nullptr; | 128 | 1.22k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 379 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 379 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 379 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 1 | case TYPE_DECIMALV2: { | 115 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 1 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 379 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 379 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 65 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 65 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 65 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 65 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 65 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 20 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 20 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 20 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 20 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 20 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 9 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 9 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 9 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 9 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 9 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 15 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 15 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 15 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 15 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 15 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm8EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 10 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 10 | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 10 | switch (type) { | 111 | 0 | case TYPE_BOOLEAN: { | 112 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 0 | case TYPE_DECIMALV2: { | 115 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 0 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 10 | } | 126 | | | 127 | 0 | return nullptr; | 128 | 10 | } |
_ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 22.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 22.1k | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 22.1k | switch (type) { | 111 | 217 | case TYPE_BOOLEAN: { | 112 | 217 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 35 | case TYPE_DECIMALV2: { | 115 | 35 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 35 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 22.1k | } | 126 | | | 127 | 0 | return nullptr; | 128 | 22.1k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 107 | 31.4k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 108 | 31.4k | using Creator = PredicateFunctionCreator<Traits>; | 109 | | | 110 | 31.4k | switch (type) { | 111 | 227 | case TYPE_BOOLEAN: { | 112 | 227 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 113 | 0 | } | 114 | 72 | case TYPE_DECIMALV2: { | 115 | 72 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 116 | 0 | } | 117 | 0 | #define M(NAME) \ | 118 | 0 | case NAME: { \ | 119 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 120 | 0 | } | 121 | 72 | APPLY_FOR_PRIMTYPE(M) | 122 | 0 | #undef M | 123 | 0 | default: | 124 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 125 | 31.4k | } | 126 | | | 127 | 0 | return nullptr; | 128 | 31.4k | } |
|
129 | | |
130 | 22.1k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
131 | 22.1k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
132 | 22.1k | } |
133 | | |
134 | | template <size_t N = 0> |
135 | 32.5k | inline auto create_set(PrimitiveType type, bool null_aware) { |
136 | 32.5k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
137 | 32.5k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 30.3k | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 30.3k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 30.3k | } |
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 481 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 481 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 481 | } |
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 1.22k | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 1.22k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 1.22k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 379 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 379 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 379 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 65 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 65 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 65 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 20 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 20 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 20 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 9 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 9 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 9 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 15 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 15 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 15 | } |
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 135 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 136 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 137 | 10 | } |
|
138 | | |
139 | 2.35k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
140 | 2.35k | if (size == 0) { |
141 | 12 | return create_set<0>(type, null_aware); |
142 | 2.33k | } else if (size == 1) { |
143 | 479 | return create_set<1>(type, null_aware); |
144 | 1.86k | } else if (size == 2) { |
145 | 1.22k | return create_set<2>(type, null_aware); |
146 | 1.22k | } else if (size == 3) { |
147 | 359 | return create_set<3>(type, null_aware); |
148 | 359 | } else if (size == 4) { |
149 | 63 | return create_set<4>(type, null_aware); |
150 | 211 | } else if (size == 5) { |
151 | 18 | return create_set<5>(type, null_aware); |
152 | 193 | } else if (size == 6) { |
153 | 7 | return create_set<6>(type, null_aware); |
154 | 186 | } else if (size == 7) { |
155 | 13 | return create_set<7>(type, null_aware); |
156 | 173 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
157 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
158 | 166 | } else { |
159 | 166 | return create_set(type, null_aware); |
160 | 166 | } |
161 | 2.35k | } |
162 | | |
163 | 531 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
164 | 531 | return new StringValueSet(null_aware); |
165 | 531 | } |
166 | | |
167 | 531 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
168 | 531 | return create_string_value_set(null_aware); |
169 | 531 | } |
170 | | |
171 | 31.5k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
172 | 31.5k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
173 | 31.5k | } |
174 | | |
175 | | template <PrimitiveType PT> |
176 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
177 | | uint32_t column_id, const std::shared_ptr<BloomFilterFuncBase>& filter, const TabletColumn*, |
178 | | bool null_aware) { |
179 | | std::shared_ptr<BloomFilterFuncBase> filter_olap; |
180 | | filter_olap.reset(create_bloom_filter(PT, null_aware)); |
181 | | filter_olap->light_copy(filter.get()); |
182 | | // create a new filter to match the input filter and PT. For example, filter may be varchar, but PT is char |
183 | | return BloomFilterColumnPredicate<PT>::create_shared(column_id, filter_olap); |
184 | | } |
185 | | |
186 | | template <PrimitiveType PT> |
187 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
188 | | uint32_t column_id, const std::shared_ptr<HybridSetBase>& filter, |
189 | | const TabletColumn* column, bool) { |
190 | | return create_in_list_predicate<PT, PredicateType::IN_LIST>(column_id, filter, |
191 | | column->length()); |
192 | | } |
193 | | |
194 | | template <PrimitiveType PT> |
195 | | std::shared_ptr<ColumnPredicate> create_olap_column_predicate( |
196 | | uint32_t column_id, const std::shared_ptr<FunctionFilter>& filter, |
197 | 297 | const TabletColumn* column, bool) { |
198 | | // currently only support like predicate |
199 | 297 | if constexpr (PT == TYPE_CHAR) { |
200 | 15 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, |
201 | 15 | column->name(), filter->_fn_ctx, |
202 | 15 | filter->_string_param); |
203 | 282 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { |
204 | 282 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, |
205 | 282 | column->name(), filter->_fn_ctx, |
206 | 282 | filter->_string_param); |
207 | 282 | } |
208 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); |
209 | 297 | } 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 | 197 | 15 | const TabletColumn* column, bool) { | 198 | | // currently only support like predicate | 199 | 15 | if constexpr (PT == TYPE_CHAR) { | 200 | 15 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 201 | 15 | column->name(), filter->_fn_ctx, | 202 | 15 | filter->_string_param); | 203 | | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 204 | | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 205 | | column->name(), filter->_fn_ctx, | 206 | | filter->_string_param); | 207 | | } | 208 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 209 | 15 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 197 | 248 | const TabletColumn* column, bool) { | 198 | | // currently only support like predicate | 199 | | if constexpr (PT == TYPE_CHAR) { | 200 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 201 | | column->name(), filter->_fn_ctx, | 202 | | filter->_string_param); | 203 | 248 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 204 | 248 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 205 | 248 | column->name(), filter->_fn_ctx, | 206 | 248 | filter->_string_param); | 207 | 248 | } | 208 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 209 | 248 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 197 | 34 | const TabletColumn* column, bool) { | 198 | | // currently only support like predicate | 199 | | if constexpr (PT == TYPE_CHAR) { | 200 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 201 | | column->name(), filter->_fn_ctx, | 202 | | filter->_string_param); | 203 | 34 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 204 | 34 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 205 | 34 | column->name(), filter->_fn_ctx, | 206 | 34 | filter->_string_param); | 207 | 34 | } | 208 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 209 | 34 | } |
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 |
210 | | |
211 | | template <typename T> |
212 | | std::shared_ptr<ColumnPredicate> create_column_predicate(uint32_t column_id, |
213 | | const std::shared_ptr<T>& filter, |
214 | | FieldType type, const TabletColumn* column, |
215 | 298 | bool null_aware = false) { |
216 | 298 | switch (type) { |
217 | 0 | #define M(NAME) \ |
218 | 299 | case FieldType::OLAP_FIELD_##NAME: { \ |
219 | 299 | return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \ |
220 | 299 | } |
221 | 299 | APPLY_FOR_PRIMTYPE(M) |
222 | 0 | #undef M |
223 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL: { |
224 | 0 | return create_olap_column_predicate<TYPE_DECIMALV2>(column_id, filter, column, null_aware); |
225 | 0 | } |
226 | 0 | case FieldType::OLAP_FIELD_TYPE_BOOL: { |
227 | 0 | return create_olap_column_predicate<TYPE_BOOLEAN>(column_id, filter, column, null_aware); |
228 | 0 | } |
229 | 0 | default: |
230 | 0 | return nullptr; |
231 | 298 | } |
232 | 298 | } |
233 | | |
234 | | } // namespace doris |