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 | 12.5k | static BasePtr get_function(bool null_aware) { |
36 | 12.5k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
37 | 12.5k | return new MinMaxNumFunc< |
38 | 12.5k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
39 | 12.5k | null_aware); |
40 | 12.5k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_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_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 13 | static BasePtr get_function(bool null_aware) { | 36 | 13 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 13 | return new MinMaxNumFunc< | 38 | 13 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 13 | null_aware); | 40 | 13 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 414 | static BasePtr get_function(bool null_aware) { | 36 | 414 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 414 | return new MinMaxNumFunc< | 38 | 414 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 414 | null_aware); | 40 | 414 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 367 | static BasePtr get_function(bool null_aware) { | 36 | 367 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 367 | return new MinMaxNumFunc< | 38 | 367 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 367 | null_aware); | 40 | 367 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 7.02k | static BasePtr get_function(bool null_aware) { | 36 | 7.02k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 7.02k | return new MinMaxNumFunc< | 38 | 7.02k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 7.02k | null_aware); | 40 | 7.02k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 2.71k | static BasePtr get_function(bool null_aware) { | 36 | 2.71k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 2.71k | return new MinMaxNumFunc< | 38 | 2.71k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 2.71k | null_aware); | 40 | 2.71k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 154 | static BasePtr get_function(bool null_aware) { | 36 | 154 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 154 | return new MinMaxNumFunc< | 38 | 154 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 154 | null_aware); | 40 | 154 | } |
_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 | 67 | static BasePtr get_function(bool null_aware) { | 36 | 67 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 67 | return new MinMaxNumFunc< | 38 | 67 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 67 | null_aware); | 40 | 67 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 19 | static BasePtr get_function(bool null_aware) { | 36 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 19 | return new MinMaxNumFunc< | 38 | 19 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 19 | null_aware); | 40 | 19 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 16 | static BasePtr get_function(bool null_aware) { | 36 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 16 | return new MinMaxNumFunc< | 38 | 16 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 16 | null_aware); | 40 | 16 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 453 | static BasePtr get_function(bool null_aware) { | 36 | 453 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 453 | return new MinMaxNumFunc< | 38 | 453 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 453 | null_aware); | 40 | 453 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 96 | static BasePtr get_function(bool null_aware) { | 36 | 96 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 96 | return new MinMaxNumFunc< | 38 | 96 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 96 | null_aware); | 40 | 96 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 6 | static BasePtr get_function(bool null_aware) { | 36 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 6 | return new MinMaxNumFunc< | 38 | 6 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 6 | null_aware); | 40 | 6 | } |
Unexecuted instantiation: _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_14MinMaxFuncBaseEb _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 19 | static BasePtr get_function(bool null_aware) { | 36 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 19 | return new MinMaxNumFunc< | 38 | 19 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 19 | null_aware); | 40 | 19 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 582 | static BasePtr get_function(bool null_aware) { | 36 | 582 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 582 | return new MinMaxNumFunc< | 38 | 582 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 582 | null_aware); | 40 | 582 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 189 | static BasePtr get_function(bool null_aware) { | 36 | 189 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 189 | return new MinMaxNumFunc< | 38 | 189 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 189 | null_aware); | 40 | 189 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 29 | static BasePtr get_function(bool null_aware) { | 36 | 29 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 29 | return new MinMaxNumFunc< | 38 | 29 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 29 | null_aware); | 40 | 29 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 27 | static BasePtr get_function(bool null_aware) { | 36 | 27 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 27 | return new MinMaxNumFunc< | 38 | 27 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 27 | null_aware); | 40 | 27 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 304 | static BasePtr get_function(bool null_aware) { | 36 | 304 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 304 | return new MinMaxNumFunc< | 38 | 304 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 304 | null_aware); | 40 | 304 | } |
_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 | 5 | static BasePtr get_function(bool null_aware) { | 36 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 5 | return new MinMaxNumFunc< | 38 | 5 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 5 | null_aware); | 40 | 5 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 5 | static BasePtr get_function(bool null_aware) { | 36 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 5 | return new MinMaxNumFunc< | 38 | 5 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 5 | null_aware); | 40 | 5 | } |
|
41 | | }; |
42 | | |
43 | | class HybridSetTraits { |
44 | | public: |
45 | | using BasePtr = HybridSetBase*; |
46 | | template <PrimitiveType type, size_t N> |
47 | 26.4k | static BasePtr get_function(bool null_aware) { |
48 | 26.4k | if constexpr (is_string_type(type)) { |
49 | 991 | return new StringSet<>(null_aware); |
50 | 2.00k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
51 | 2.00k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
52 | 2.00k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
53 | 2.00k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
54 | 997 | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 997 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
56 | 22.4k | } else { |
57 | 22.4k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 22.4k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
59 | 22.4k | } |
60 | 26.4k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 15 | 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 | 15 | } else { | 57 | 15 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 15 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 15 | } | 60 | 15 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 28 | 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 | 28 | } else { | 57 | 28 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 28 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 28 | } | 60 | 28 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 968 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 968 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 968 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 968 | 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 | 968 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1.01k | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 1.01k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 1.01k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 1.01k | 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.01k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 14.3k | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 14.3k | } else { | 57 | 14.3k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 14.3k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 14.3k | } | 60 | 14.3k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4.34k | 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.34k | } else { | 57 | 4.34k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4.34k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 4.34k | } | 60 | 4.34k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 127 | 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 | 127 | } else { | 57 | 127 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 127 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 127 | } | 60 | 127 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 7 | 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 | 7 | } else { | 57 | 7 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 7 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 7 | } | 60 | 7 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 24 | 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 | 24 | } else { | 57 | 24 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 24 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 24 | } | 60 | 24 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_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 | | } 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 | 8 | } else { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 8 | } | 60 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_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 | | } 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 | 31 | } else { | 57 | 31 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 31 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 31 | } | 60 | 31 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 739 | 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 | 739 | } else { | 57 | 739 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 739 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 739 | } | 60 | 739 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 2.40k | 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.40k | } else { | 57 | 2.40k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2.40k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 2.40k | } | 60 | 2.40k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 16 | 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 | 16 | } else { | 57 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 16 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 16 | } | 60 | 16 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 1 | } else { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 1 | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 115 | static BasePtr get_function(bool null_aware) { | 48 | 115 | if constexpr (is_string_type(type)) { | 49 | 115 | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 115 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 699 | static BasePtr get_function(bool null_aware) { | 48 | 699 | if constexpr (is_string_type(type)) { | 49 | 699 | 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 | 699 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 177 | static BasePtr get_function(bool null_aware) { | 48 | 177 | if constexpr (is_string_type(type)) { | 49 | 177 | 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 | 177 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 149 | 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 | 149 | } else { | 57 | 149 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 149 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 149 | } | 60 | 149 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 22 | 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 | 22 | } else { | 57 | 22 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 22 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 22 | } | 60 | 22 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 148 | 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 | 148 | } else { | 57 | 148 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 148 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 148 | } | 60 | 148 | } |
_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 | 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 | | } 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 | 8 | } else { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 8 | } | 60 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_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 | | } 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 | 8 | } else { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 8 | } | 60 | 8 | } |
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 | 571 | 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 | 571 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 571 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 571 | 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 | 571 | } |
_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 | 19 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 19 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 19 | 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 | 19 | } |
_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 | 63 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | 63 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 63 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 63 | 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 | 63 | } |
_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 | 19.0k | static BasePtr get_function(bool null_aware) { |
68 | 19.0k | return new BloomFilterFunc<type>(null_aware); |
69 | 19.0k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 14 | static BasePtr get_function(bool null_aware) { | 68 | 14 | return new BloomFilterFunc<type>(null_aware); | 69 | 14 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 31 | static BasePtr get_function(bool null_aware) { | 68 | 31 | return new BloomFilterFunc<type>(null_aware); | 69 | 31 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.11k | static BasePtr get_function(bool null_aware) { | 68 | 1.11k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.11k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.09k | static BasePtr get_function(bool null_aware) { | 68 | 1.09k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.09k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 9.90k | static BasePtr get_function(bool null_aware) { | 68 | 9.90k | return new BloomFilterFunc<type>(null_aware); | 69 | 9.90k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 4.09k | static BasePtr get_function(bool null_aware) { | 68 | 4.09k | return new BloomFilterFunc<type>(null_aware); | 69 | 4.09k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 154 | static BasePtr get_function(bool null_aware) { | 68 | 154 | return new BloomFilterFunc<type>(null_aware); | 69 | 154 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1 | static BasePtr get_function(bool null_aware) { | 68 | 1 | return new BloomFilterFunc<type>(null_aware); | 69 | 1 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 12 | static BasePtr get_function(bool null_aware) { | 68 | 12 | return new BloomFilterFunc<type>(null_aware); | 69 | 12 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 28 | static BasePtr get_function(bool null_aware) { | 68 | 28 | return new BloomFilterFunc<type>(null_aware); | 69 | 28 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_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_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 630 | static BasePtr get_function(bool null_aware) { | 68 | 630 | return new BloomFilterFunc<type>(null_aware); | 69 | 630 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 223 | static BasePtr get_function(bool null_aware) { | 68 | 223 | return new BloomFilterFunc<type>(null_aware); | 69 | 223 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 17 | static BasePtr get_function(bool null_aware) { | 68 | 17 | return new BloomFilterFunc<type>(null_aware); | 69 | 17 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_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 | 142 | static BasePtr get_function(bool null_aware) { | 68 | 142 | return new BloomFilterFunc<type>(null_aware); | 69 | 142 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 597 | static BasePtr get_function(bool null_aware) { | 68 | 597 | return new BloomFilterFunc<type>(null_aware); | 69 | 597 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 262 | static BasePtr get_function(bool null_aware) { | 68 | 262 | return new BloomFilterFunc<type>(null_aware); | 69 | 262 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 156 | static BasePtr get_function(bool null_aware) { | 68 | 156 | return new BloomFilterFunc<type>(null_aware); | 69 | 156 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 367 | static BasePtr get_function(bool null_aware) { | 68 | 367 | return new BloomFilterFunc<type>(null_aware); | 69 | 367 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 203 | static BasePtr get_function(bool null_aware) { | 68 | 203 | return new BloomFilterFunc<type>(null_aware); | 69 | 203 | } |
_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 | 58.0k | static typename Traits::BasePtr create(bool null_aware) { |
77 | 58.0k | return Traits::template get_function<type, N>(null_aware); |
78 | 58.0k | } _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_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_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 13 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 13 | return Traits::template get_function<type, N>(null_aware); | 78 | 13 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 414 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 414 | return Traits::template get_function<type, N>(null_aware); | 78 | 414 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 367 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 367 | return Traits::template get_function<type, N>(null_aware); | 78 | 367 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 7.02k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 7.02k | return Traits::template get_function<type, N>(null_aware); | 78 | 7.02k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 2.71k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2.71k | return Traits::template get_function<type, N>(null_aware); | 78 | 2.71k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 154 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 154 | return Traits::template get_function<type, N>(null_aware); | 78 | 154 | } |
_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 | 67 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 67 | return Traits::template get_function<type, N>(null_aware); | 78 | 67 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 19 | return Traits::template get_function<type, N>(null_aware); | 78 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 16 | return Traits::template get_function<type, N>(null_aware); | 78 | 16 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 453 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 453 | return Traits::template get_function<type, N>(null_aware); | 78 | 453 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 96 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 96 | return Traits::template get_function<type, N>(null_aware); | 78 | 96 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb 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_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_14MinMaxFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 19 | return Traits::template get_function<type, N>(null_aware); | 78 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 582 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 582 | return Traits::template get_function<type, N>(null_aware); | 78 | 582 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 189 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 189 | return Traits::template get_function<type, N>(null_aware); | 78 | 189 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 29 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 29 | return Traits::template get_function<type, N>(null_aware); | 78 | 29 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 27 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 27 | return Traits::template get_function<type, N>(null_aware); | 78 | 27 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 304 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 304 | return Traits::template get_function<type, N>(null_aware); | 78 | 304 | } |
_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 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5 | return Traits::template get_function<type, N>(null_aware); | 78 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 15 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 15 | return Traits::template get_function<type, N>(null_aware); | 78 | 15 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb 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_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 968 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 968 | return Traits::template get_function<type, N>(null_aware); | 78 | 968 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1.01k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1.01k | return Traits::template get_function<type, N>(null_aware); | 78 | 1.01k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 14.2k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 14.2k | return Traits::template get_function<type, N>(null_aware); | 78 | 14.2k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 4.33k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4.33k | return Traits::template get_function<type, N>(null_aware); | 78 | 4.33k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 127 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 127 | return Traits::template get_function<type, N>(null_aware); | 78 | 127 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb 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_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 24 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 24 | return Traits::template get_function<type, N>(null_aware); | 78 | 24 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_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 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_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_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 739 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 739 | return Traits::template get_function<type, N>(null_aware); | 78 | 739 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 2.40k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 2.40k | return Traits::template get_function<type, N>(null_aware); | 78 | 2.40k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb 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_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 115 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 115 | return Traits::template get_function<type, N>(null_aware); | 78 | 115 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 698 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 698 | return Traits::template get_function<type, N>(null_aware); | 78 | 698 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 177 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 177 | return Traits::template get_function<type, N>(null_aware); | 78 | 177 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 149 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 149 | return Traits::template get_function<type, N>(null_aware); | 78 | 149 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 22 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 22 | return Traits::template get_function<type, N>(null_aware); | 78 | 22 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 148 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 148 | return Traits::template get_function<type, N>(null_aware); | 78 | 148 | } |
_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 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 8 | return Traits::template get_function<type, N>(null_aware); | 78 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_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_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 | 571 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 571 | return Traits::template get_function<type, N>(null_aware); | 78 | 571 | } |
_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 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 19 | return Traits::template get_function<type, N>(null_aware); | 78 | 19 | } |
_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 | 63 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 63 | return Traits::template get_function<type, N>(null_aware); | 78 | 63 | } |
_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 _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1.11k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1.11k | return Traits::template get_function<type, N>(null_aware); | 78 | 1.11k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1.09k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1.09k | return Traits::template get_function<type, N>(null_aware); | 78 | 1.09k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 9.91k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 9.91k | return Traits::template get_function<type, N>(null_aware); | 78 | 9.91k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 4.09k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4.09k | return Traits::template get_function<type, N>(null_aware); | 78 | 4.09k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 154 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 154 | return Traits::template get_function<type, N>(null_aware); | 78 | 154 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 12 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 12 | return Traits::template get_function<type, N>(null_aware); | 78 | 12 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 28 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 28 | return Traits::template get_function<type, N>(null_aware); | 78 | 28 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_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_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 632 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 632 | return Traits::template get_function<type, N>(null_aware); | 78 | 632 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 223 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 223 | return Traits::template get_function<type, N>(null_aware); | 78 | 223 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_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 | 142 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 142 | return Traits::template get_function<type, N>(null_aware); | 78 | 142 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 597 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 597 | return Traits::template get_function<type, N>(null_aware); | 78 | 597 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 262 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 262 | return Traits::template get_function<type, N>(null_aware); | 78 | 262 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 156 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 156 | return Traits::template get_function<type, N>(null_aware); | 78 | 156 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 367 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 367 | return Traits::template get_function<type, N>(null_aware); | 78 | 367 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 203 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 203 | return Traits::template get_function<type, N>(null_aware); | 78 | 203 | } |
_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 | } |
|
79 | | }; |
80 | | |
81 | | #define APPLY_FOR_PRIMTYPE(M) \ |
82 | 2.50k | M(TYPE_TINYINT) \ |
83 | 2.50k | M(TYPE_SMALLINT) \ |
84 | 31.9k | M(TYPE_INT) \ |
85 | 31.9k | M(TYPE_BIGINT) \ |
86 | 11.2k | M(TYPE_LARGEINT) \ |
87 | 441 | M(TYPE_FLOAT) \ |
88 | 115 | M(TYPE_DOUBLE) \ |
89 | 115 | M(TYPE_DATE) \ |
90 | 65 | M(TYPE_DATETIME) \ |
91 | 1.84k | M(TYPE_DATEV2) \ |
92 | 2.75k | M(TYPE_DATETIMEV2) \ |
93 | 2.75k | M(TYPE_TIMESTAMPTZ) \ |
94 | 58 | M(TYPE_TIMEV2) \ |
95 | 276 | M(TYPE_CHAR) \ |
96 | 1.87k | M(TYPE_VARCHAR) \ |
97 | 1.87k | M(TYPE_STRING) \ |
98 | 628 | M(TYPE_DECIMAL32) \ |
99 | 422 | M(TYPE_DECIMAL64) \ |
100 | 664 | M(TYPE_DECIMAL128I) \ |
101 | 664 | M(TYPE_DECIMAL256) \ |
102 | 134 | M(TYPE_IPV4) \ |
103 | 32 | M(TYPE_IPV6) |
104 | | |
105 | | template <class Traits, size_t N = 0> |
106 | 58.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
107 | 58.1k | using Creator = PredicateFunctionCreator<Traits>; |
108 | | |
109 | 58.1k | switch (type) { |
110 | 33 | case TYPE_BOOLEAN: { |
111 | 33 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
112 | 0 | } |
113 | 73 | case TYPE_DECIMALV2: { |
114 | 73 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
115 | 0 | } |
116 | 0 | #define M(NAME) \ |
117 | 57.9k | case NAME: { \ |
118 | 57.9k | return Creator::template create<NAME, N>(null_aware); \ |
119 | 57.9k | } |
120 | 57.9k | 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 | 58.1k | } |
125 | | |
126 | 0 | return nullptr; |
127 | 58.1k | } _ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 12.5k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 12.5k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 12.5k | switch (type) { | 110 | 1 | case TYPE_BOOLEAN: { | 111 | 1 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 13 | case TYPE_DECIMALV2: { | 114 | 13 | 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 | 13 | 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 | 12.5k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 12.5k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 25.4k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 25.4k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 25.4k | switch (type) { | 110 | 15 | case TYPE_BOOLEAN: { | 111 | 15 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 28 | case TYPE_DECIMALV2: { | 114 | 28 | 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 | 28 | 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 | 25.4k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 25.4k | } |
_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 | 737 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 737 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 737 | 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 | 737 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 737 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 124 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 124 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 124 | 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 | 124 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 124 | } |
_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 | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 19.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 19.1k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 19.1k | switch (type) { | 110 | 14 | case TYPE_BOOLEAN: { | 111 | 14 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 31 | case TYPE_DECIMALV2: { | 114 | 31 | 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 | 31 | 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 | 19.1k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 19.1k | } |
|
128 | | |
129 | 12.5k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
130 | 12.5k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
131 | 12.5k | } |
132 | | |
133 | | template <size_t N = 0> |
134 | 26.4k | inline auto create_set(PrimitiveType type, bool null_aware) { |
135 | 26.4k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
136 | 26.4k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 25.4k | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 25.4k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 25.4k | } |
_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 | 737 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 737 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 737 | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 124 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 124 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 124 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 51 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 51 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 51 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 24 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 24 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 24 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 10 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 7 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 7 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 7 | } |
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 10 | } |
|
137 | | |
138 | 1.00k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
139 | 1.00k | if (size == 0) { |
140 | 16 | return create_set<0>(type, null_aware); |
141 | 987 | } else if (size == 1) { |
142 | 51 | return create_set<1>(type, null_aware); |
143 | 936 | } else if (size == 2) { |
144 | 735 | return create_set<2>(type, null_aware); |
145 | 735 | } else if (size == 3) { |
146 | 104 | return create_set<3>(type, null_aware); |
147 | 104 | } else if (size == 4) { |
148 | 49 | return create_set<4>(type, null_aware); |
149 | 49 | } else if (size == 5) { |
150 | 22 | return create_set<5>(type, null_aware); |
151 | 26 | } else if (size == 6) { |
152 | 8 | return create_set<6>(type, null_aware); |
153 | 18 | } else if (size == 7) { |
154 | 5 | return create_set<7>(type, null_aware); |
155 | 13 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
156 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
157 | 7 | } else { |
158 | 6 | return create_set(type, null_aware); |
159 | 6 | } |
160 | 1.00k | } |
161 | | |
162 | 335 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
163 | 335 | return new StringValueSet(null_aware); |
164 | 335 | } |
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 | 19.1k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
171 | 19.1k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
172 | 19.1k | } |
173 | | |
174 | | } // namespace doris |