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