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 | 22.3k | static BasePtr get_function(bool null_aware) { |
36 | 22.3k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
37 | 22.3k | return new MinMaxNumFunc< |
38 | 22.3k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
39 | 22.3k | null_aware); |
40 | 22.3k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 231 | static BasePtr get_function(bool null_aware) { | 36 | 231 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 231 | return new MinMaxNumFunc< | 38 | 231 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 231 | null_aware); | 40 | 231 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 9 | static BasePtr get_function(bool null_aware) { | 36 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 9 | return new MinMaxNumFunc< | 38 | 9 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 9 | null_aware); | 40 | 9 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 760 | static BasePtr get_function(bool null_aware) { | 36 | 760 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 760 | return new MinMaxNumFunc< | 38 | 760 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 760 | null_aware); | 40 | 760 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 508 | static BasePtr get_function(bool null_aware) { | 36 | 508 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 508 | return new MinMaxNumFunc< | 38 | 508 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 508 | null_aware); | 40 | 508 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 11.4k | static BasePtr get_function(bool null_aware) { | 36 | 11.4k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 11.4k | return new MinMaxNumFunc< | 38 | 11.4k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 11.4k | null_aware); | 40 | 11.4k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 4.85k | static BasePtr get_function(bool null_aware) { | 36 | 4.85k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 4.85k | return new MinMaxNumFunc< | 38 | 4.85k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 4.85k | null_aware); | 40 | 4.85k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 236 | static BasePtr get_function(bool null_aware) { | 36 | 236 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 236 | return new MinMaxNumFunc< | 38 | 236 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 236 | null_aware); | 40 | 236 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 289 | static BasePtr get_function(bool null_aware) { | 36 | 289 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 289 | return new MinMaxNumFunc< | 38 | 289 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 289 | null_aware); | 40 | 289 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 3 | static BasePtr get_function(bool null_aware) { | 36 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 3 | return new MinMaxNumFunc< | 38 | 3 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 3 | null_aware); | 40 | 3 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 1 | static BasePtr get_function(bool null_aware) { | 36 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 1 | return new MinMaxNumFunc< | 38 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 1 | null_aware); | 40 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 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_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 924 | static BasePtr get_function(bool null_aware) { | 36 | 924 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 924 | return new MinMaxNumFunc< | 38 | 924 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 924 | null_aware); | 40 | 924 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 935 | static BasePtr get_function(bool null_aware) { | 36 | 935 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 935 | return new MinMaxNumFunc< | 38 | 935 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 935 | null_aware); | 40 | 935 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 17 | static BasePtr get_function(bool null_aware) { | 36 | 17 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 17 | return new MinMaxNumFunc< | 38 | 17 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 17 | null_aware); | 40 | 17 | } |
Unexecuted instantiation: _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_14MinMaxFuncBaseEb _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 43 | static BasePtr get_function(bool null_aware) { | 36 | 43 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 43 | return new MinMaxNumFunc< | 38 | 43 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 43 | null_aware); | 40 | 43 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 613 | static BasePtr get_function(bool null_aware) { | 36 | 613 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 613 | return new MinMaxNumFunc< | 38 | 613 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 613 | null_aware); | 40 | 613 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 635 | static BasePtr get_function(bool null_aware) { | 36 | 635 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 635 | return new MinMaxNumFunc< | 38 | 635 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 635 | null_aware); | 40 | 635 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 38 | static BasePtr get_function(bool null_aware) { | 36 | 38 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 38 | return new MinMaxNumFunc< | 38 | 38 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 38 | null_aware); | 40 | 38 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 556 | static BasePtr get_function(bool null_aware) { | 36 | 556 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 556 | return new MinMaxNumFunc< | 38 | 556 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 556 | null_aware); | 40 | 556 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 130 | static BasePtr get_function(bool null_aware) { | 36 | 130 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 130 | return new MinMaxNumFunc< | 38 | 130 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 130 | null_aware); | 40 | 130 | } |
_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 | 17 | static BasePtr get_function(bool null_aware) { | 36 | 17 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 17 | return new MinMaxNumFunc< | 38 | 17 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 17 | null_aware); | 40 | 17 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 35 | 17 | static BasePtr get_function(bool null_aware) { | 36 | 17 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 37 | 17 | return new MinMaxNumFunc< | 38 | 17 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 39 | 17 | null_aware); | 40 | 17 | } |
|
41 | | }; |
42 | | |
43 | | class HybridSetTraits { |
44 | | public: |
45 | | using BasePtr = HybridSetBase*; |
46 | | template <PrimitiveType type, size_t N> |
47 | 35.0k | static BasePtr get_function(bool null_aware) { |
48 | 35.0k | if constexpr (is_string_type(type)) { |
49 | 1.65k | return new StringSet<>(null_aware); |
50 | 1.65k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
51 | 1.21k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
52 | 1.21k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
53 | 3.50k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
54 | 3.50k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 3.50k | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
56 | 28.6k | } else { |
57 | 28.6k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 28.6k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
59 | 28.6k | } |
60 | 35.0k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 234 | 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 | 234 | } else { | 57 | 234 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 234 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 234 | } | 60 | 234 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 20 | 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 | 20 | } else { | 57 | 20 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 20 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 20 | } | 60 | 20 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 634 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 634 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 634 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 634 | 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 | 634 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 483 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 483 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 483 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 483 | 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 | 483 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 17.5k | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 17.5k | } else { | 57 | 17.5k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 17.5k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 17.5k | } | 60 | 17.5k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 5.08k | 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 | 5.08k | } else { | 57 | 5.08k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5.08k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 5.08k | } | 60 | 5.08k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 177 | 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 | 177 | } else { | 57 | 177 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 177 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 177 | } | 60 | 177 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 293 | 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 | 293 | } else { | 57 | 293 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 293 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 293 | } | 60 | 293 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_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_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 4 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 4 | } else { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 4 | } | 60 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 1.16k | 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.16k | } else { | 57 | 1.16k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1.16k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 1.16k | } | 60 | 1.16k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 3.20k | 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 | 3.20k | } else { | 57 | 3.20k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3.20k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 3.20k | } | 60 | 3.20k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_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 | | } 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 | 25 | } else { | 57 | 25 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 25 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 25 | } | 60 | 25 | } |
_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 | 45 | static BasePtr get_function(bool null_aware) { | 48 | 45 | if constexpr (is_string_type(type)) { | 49 | 45 | 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 | 45 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 852 | static BasePtr get_function(bool null_aware) { | 48 | 852 | if constexpr (is_string_type(type)) { | 49 | 852 | 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 | 852 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 760 | static BasePtr get_function(bool null_aware) { | 48 | 760 | if constexpr (is_string_type(type)) { | 49 | 760 | 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 | 760 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 77 | 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 | 77 | } else { | 57 | 77 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 77 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 77 | } | 60 | 77 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 693 | 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 | 693 | } else { | 57 | 693 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 693 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 693 | } | 60 | 693 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 80 | 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 | 80 | } else { | 57 | 80 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 80 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 80 | } | 60 | 80 | } |
_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 | 20 | 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 | 20 | } else { | 57 | 20 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 20 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 20 | } | 60 | 20 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 20 | 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 | 20 | } else { | 57 | 20 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 20 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 20 | } | 60 | 20 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 78 | static BasePtr get_function(bool null_aware) { | 48 | | if constexpr (is_string_type(type)) { | 49 | | return new StringSet<>(null_aware); | 50 | 78 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 51 | 78 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 52 | 78 | 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 | 78 | } |
_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 | 57 | 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 | 57 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 57 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 57 | 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 | 57 | } |
_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 Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 874 | 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 | 874 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 874 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 874 | 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 | 874 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 971 | 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 | 971 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 971 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 971 | 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 | 971 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm2EEEPNS_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_13PrimitiveTypeE8ELm2EEEPNS_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_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _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 | 80 | 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 | 80 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 80 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 80 | 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 | 80 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_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 | 52 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 52 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 52 | 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 | 52 | } |
_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 | 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 | 7 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 7 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 7 | 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 | 7 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm2EEEPNS_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 | 16 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 16 | 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 | 16 | } |
_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 | 433 | 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 | 433 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 433 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 433 | 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 | 433 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 47 | 691 | 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 | 691 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 691 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 691 | 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 | 691 | } |
_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 | 145 | 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 | 145 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 145 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 145 | 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 | 145 | } |
_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 | 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_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 | 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_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 | 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 | 7 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 7 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 7 | 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 | 7 | } |
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 | 23.0k | static BasePtr get_function(bool null_aware) { |
68 | 23.0k | return new BloomFilterFunc<type>(null_aware); |
69 | 23.0k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 232 | static BasePtr get_function(bool null_aware) { | 68 | 232 | return new BloomFilterFunc<type>(null_aware); | 69 | 232 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 21 | static BasePtr get_function(bool null_aware) { | 68 | 21 | return new BloomFilterFunc<type>(null_aware); | 69 | 21 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 699 | static BasePtr get_function(bool null_aware) { | 68 | 699 | return new BloomFilterFunc<type>(null_aware); | 69 | 699 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 369 | static BasePtr get_function(bool null_aware) { | 68 | 369 | return new BloomFilterFunc<type>(null_aware); | 69 | 369 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 11.9k | static BasePtr get_function(bool null_aware) { | 68 | 11.9k | return new BloomFilterFunc<type>(null_aware); | 69 | 11.9k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 5.26k | static BasePtr get_function(bool null_aware) { | 68 | 5.26k | return new BloomFilterFunc<type>(null_aware); | 69 | 5.26k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 191 | static BasePtr get_function(bool null_aware) { | 68 | 191 | return new BloomFilterFunc<type>(null_aware); | 69 | 191 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 289 | static BasePtr get_function(bool null_aware) { | 68 | 289 | return new BloomFilterFunc<type>(null_aware); | 69 | 289 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 11 | static BasePtr get_function(bool null_aware) { | 68 | 11 | return new BloomFilterFunc<type>(null_aware); | 69 | 11 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 25 | static BasePtr get_function(bool null_aware) { | 68 | 25 | return new BloomFilterFunc<type>(null_aware); | 69 | 25 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.04k | static BasePtr get_function(bool null_aware) { | 68 | 1.04k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.04k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 977 | static BasePtr get_function(bool null_aware) { | 68 | 977 | return new BloomFilterFunc<type>(null_aware); | 69 | 977 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1 | static BasePtr get_function(bool null_aware) { | 68 | 1 | return new BloomFilterFunc<type>(null_aware); | 69 | 1 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE27ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1 | static BasePtr get_function(bool null_aware) { | 68 | 1 | return new BloomFilterFunc<type>(null_aware); | 69 | 1 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 29 | static BasePtr get_function(bool null_aware) { | 68 | 29 | return new BloomFilterFunc<type>(null_aware); | 69 | 29 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 317 | static BasePtr get_function(bool null_aware) { | 68 | 317 | return new BloomFilterFunc<type>(null_aware); | 69 | 317 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 824 | static BasePtr get_function(bool null_aware) { | 68 | 824 | return new BloomFilterFunc<type>(null_aware); | 69 | 824 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 69 | static BasePtr get_function(bool null_aware) { | 68 | 69 | return new BloomFilterFunc<type>(null_aware); | 69 | 69 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 495 | static BasePtr get_function(bool null_aware) { | 68 | 495 | return new BloomFilterFunc<type>(null_aware); | 69 | 495 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 155 | static BasePtr get_function(bool null_aware) { | 68 | 155 | return new BloomFilterFunc<type>(null_aware); | 69 | 155 | } |
_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 | 25 | static BasePtr get_function(bool null_aware) { | 68 | 25 | return new BloomFilterFunc<type>(null_aware); | 69 | 25 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 25 | static BasePtr get_function(bool null_aware) { | 68 | 25 | return new BloomFilterFunc<type>(null_aware); | 69 | 25 | } |
|
70 | | }; |
71 | | |
72 | | template <class Traits> |
73 | | class PredicateFunctionCreator { |
74 | | public: |
75 | | template <PrimitiveType type, size_t N = 0> |
76 | 80.4k | static typename Traits::BasePtr create(bool null_aware) { |
77 | 80.4k | return Traits::template get_function<type, N>(null_aware); |
78 | 80.4k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 234 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 234 | return Traits::template get_function<type, N>(null_aware); | 78 | 234 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 20 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 20 | return Traits::template get_function<type, N>(null_aware); | 78 | 20 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 633 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 633 | return Traits::template get_function<type, N>(null_aware); | 78 | 633 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 483 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 483 | return Traits::template get_function<type, N>(null_aware); | 78 | 483 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 17.5k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17.5k | return Traits::template get_function<type, N>(null_aware); | 78 | 17.5k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 5.08k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5.08k | return Traits::template get_function<type, N>(null_aware); | 78 | 5.08k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_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_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 293 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 293 | return Traits::template get_function<type, N>(null_aware); | 78 | 293 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_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_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_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_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 1.16k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1.16k | return Traits::template get_function<type, N>(null_aware); | 78 | 1.16k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 3.20k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3.20k | return Traits::template get_function<type, N>(null_aware); | 78 | 3.20k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_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_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 | 45 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 45 | return Traits::template get_function<type, N>(null_aware); | 78 | 45 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 853 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 853 | return Traits::template get_function<type, N>(null_aware); | 78 | 853 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 760 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 760 | return Traits::template get_function<type, N>(null_aware); | 78 | 760 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 77 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 77 | return Traits::template get_function<type, N>(null_aware); | 78 | 77 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 693 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 693 | return Traits::template get_function<type, N>(null_aware); | 78 | 693 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 80 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 80 | return Traits::template get_function<type, N>(null_aware); | 78 | 80 | } |
_ZN5doris24PredicateFunctionCreatorINS_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 | 20 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 20 | return Traits::template get_function<type, N>(null_aware); | 78 | 20 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 20 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 20 | return Traits::template get_function<type, N>(null_aware); | 78 | 20 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 78 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 78 | return Traits::template get_function<type, N>(null_aware); | 78 | 78 | } |
_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 | 57 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 57 | return Traits::template get_function<type, N>(null_aware); | 78 | 57 | } |
_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 Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_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 | 874 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 874 | return Traits::template get_function<type, N>(null_aware); | 78 | 874 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 971 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 971 | return Traits::template get_function<type, N>(null_aware); | 78 | 971 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_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_13PrimitiveTypeE8ELm2EEEPNS_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_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _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 | 80 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 80 | return Traits::template get_function<type, N>(null_aware); | 78 | 80 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_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_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 | 7 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 7 | return Traits::template get_function<type, N>(null_aware); | 78 | 7 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_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_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 | 433 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 433 | return Traits::template get_function<type, N>(null_aware); | 78 | 433 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 76 | 691 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 691 | return Traits::template get_function<type, N>(null_aware); | 78 | 691 | } |
_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 | 145 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 145 | return Traits::template get_function<type, N>(null_aware); | 78 | 145 | } |
_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 | 23 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 23 | return Traits::template get_function<type, N>(null_aware); | 78 | 23 | } |
_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 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 6 | return Traits::template get_function<type, N>(null_aware); | 78 | 6 | } |
_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 | 7 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 7 | return Traits::template get_function<type, N>(null_aware); | 78 | 7 | } |
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_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 231 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 231 | return Traits::template get_function<type, N>(null_aware); | 78 | 231 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 9 | return Traits::template get_function<type, N>(null_aware); | 78 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 760 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 760 | return Traits::template get_function<type, N>(null_aware); | 78 | 760 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 508 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 508 | return Traits::template get_function<type, N>(null_aware); | 78 | 508 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 11.4k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 11.4k | return Traits::template get_function<type, N>(null_aware); | 78 | 11.4k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 4.86k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 4.86k | return Traits::template get_function<type, N>(null_aware); | 78 | 4.86k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 236 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 236 | return Traits::template get_function<type, N>(null_aware); | 78 | 236 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 289 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 289 | return Traits::template get_function<type, N>(null_aware); | 78 | 289 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 3 | return Traits::template get_function<type, N>(null_aware); | 78 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 925 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 925 | return Traits::template get_function<type, N>(null_aware); | 78 | 925 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 935 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 935 | return Traits::template get_function<type, N>(null_aware); | 78 | 935 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_14MinMaxFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 43 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 43 | return Traits::template get_function<type, N>(null_aware); | 78 | 43 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 613 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 613 | return Traits::template get_function<type, N>(null_aware); | 78 | 613 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 635 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 635 | return Traits::template get_function<type, N>(null_aware); | 78 | 635 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 38 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 38 | return Traits::template get_function<type, N>(null_aware); | 78 | 38 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 556 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 556 | return Traits::template get_function<type, N>(null_aware); | 78 | 556 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 130 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 130 | return Traits::template get_function<type, N>(null_aware); | 78 | 130 | } |
_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 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 76 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 17 | return Traits::template get_function<type, N>(null_aware); | 78 | 17 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 232 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 232 | return Traits::template get_function<type, N>(null_aware); | 78 | 232 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 21 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 21 | return Traits::template get_function<type, N>(null_aware); | 78 | 21 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 699 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 699 | return Traits::template get_function<type, N>(null_aware); | 78 | 699 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 369 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 369 | return Traits::template get_function<type, N>(null_aware); | 78 | 369 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 11.9k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 11.9k | return Traits::template get_function<type, N>(null_aware); | 78 | 11.9k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 5.26k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 5.26k | return Traits::template get_function<type, N>(null_aware); | 78 | 5.26k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 289 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 289 | return Traits::template get_function<type, N>(null_aware); | 78 | 289 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 11 | return Traits::template get_function<type, N>(null_aware); | 78 | 11 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1.04k | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1.04k | return Traits::template get_function<type, N>(null_aware); | 78 | 1.04k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 975 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 975 | return Traits::template get_function<type, N>(null_aware); | 78 | 975 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE27ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 1 | return Traits::template get_function<type, N>(null_aware); | 78 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 29 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 29 | return Traits::template get_function<type, N>(null_aware); | 78 | 29 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 317 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 317 | return Traits::template get_function<type, N>(null_aware); | 78 | 317 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 824 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 824 | return Traits::template get_function<type, N>(null_aware); | 78 | 824 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 69 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 69 | return Traits::template get_function<type, N>(null_aware); | 78 | 69 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 495 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 495 | return Traits::template get_function<type, N>(null_aware); | 78 | 495 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 76 | 155 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 155 | return Traits::template get_function<type, N>(null_aware); | 78 | 155 | } |
_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 | 25 | static typename Traits::BasePtr create(bool null_aware) { | 77 | 25 | return Traits::template get_function<type, N>(null_aware); | 78 | 25 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb 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 | } |
|
79 | | }; |
80 | | |
81 | | #define APPLY_FOR_PRIMTYPE(M) \ |
82 | 2.17k | M(TYPE_TINYINT) \ |
83 | 2.17k | M(TYPE_SMALLINT) \ |
84 | 42.4k | M(TYPE_INT) \ |
85 | 42.4k | M(TYPE_BIGINT) \ |
86 | 16.8k | M(TYPE_LARGEINT) \ |
87 | 874 | M(TYPE_FLOAT) \ |
88 | 874 | M(TYPE_DOUBLE) \ |
89 | 39 | M(TYPE_DATE) \ |
90 | 40 | M(TYPE_DATETIME) \ |
91 | 3.21k | M(TYPE_DATEV2) \ |
92 | 5.17k | M(TYPE_DATETIMEV2) \ |
93 | 5.17k | M(TYPE_TIMESTAMPTZ) \ |
94 | 62 | M(TYPE_TIMEV2) \ |
95 | 117 | M(TYPE_CHAR) \ |
96 | 1.78k | M(TYPE_VARCHAR) \ |
97 | 2.21k | M(TYPE_STRING) \ |
98 | 2.21k | M(TYPE_DECIMAL32) \ |
99 | 1.76k | M(TYPE_DECIMAL64) \ |
100 | 1.76k | M(TYPE_DECIMAL128I) \ |
101 | 374 | M(TYPE_DECIMAL256) \ |
102 | 134 | M(TYPE_IPV4) \ |
103 | 80 | M(TYPE_IPV6) |
104 | | |
105 | | template <class Traits, size_t N = 0> |
106 | 80.4k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
107 | 80.4k | using Creator = PredicateFunctionCreator<Traits>; |
108 | | |
109 | 80.4k | switch (type) { |
110 | 700 | case TYPE_BOOLEAN: { |
111 | 700 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
112 | 0 | } |
113 | 51 | case TYPE_DECIMALV2: { |
114 | 51 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
115 | 0 | } |
116 | 0 | #define M(NAME) \ |
117 | 79.6k | case NAME: { \ |
118 | 79.6k | return Creator::template create<NAME, N>(null_aware); \ |
119 | 79.6k | } |
120 | 79.6k | 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 | 80.4k | } |
125 | | |
126 | 0 | return nullptr; |
127 | 80.4k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 31.5k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 31.5k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 31.5k | switch (type) { | 110 | 234 | case TYPE_BOOLEAN: { | 111 | 234 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 20 | case TYPE_DECIMALV2: { | 114 | 20 | 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 | 20 | 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 | 31.5k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 31.5k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 153 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 153 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 153 | 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 | 153 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 153 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 2.04k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 2.04k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 2.04k | 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 | 2.04k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 2.04k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 1.16k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 1.16k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 1.16k | 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 | 1.16k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 1.16k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 171 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 171 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 171 | 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 | 171 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 171 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 34 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 34 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 34 | 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 | 34 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 34 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 12 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 12 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 12 | 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 | 12 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 12 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 11 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 11 | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 11 | 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 | 11 | } | 125 | | | 126 | 0 | return nullptr; | 127 | 11 | } |
_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_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 22.3k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 22.3k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 22.3k | switch (type) { | 110 | 231 | case TYPE_BOOLEAN: { | 111 | 231 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 9 | case TYPE_DECIMALV2: { | 114 | 9 | 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 | 9 | 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 | 22.3k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 22.3k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 106 | 23.0k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 107 | 23.0k | using Creator = PredicateFunctionCreator<Traits>; | 108 | | | 109 | 23.0k | switch (type) { | 110 | 232 | case TYPE_BOOLEAN: { | 111 | 232 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 112 | 0 | } | 113 | 21 | case TYPE_DECIMALV2: { | 114 | 21 | 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 | 21 | APPLY_FOR_PRIMTYPE(M) | 121 | 0 | #undef M | 122 | 0 | default: | 123 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 124 | 23.0k | } | 125 | | | 126 | 0 | return nullptr; | 127 | 23.0k | } |
|
128 | | |
129 | 22.3k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
130 | 22.3k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
131 | 22.3k | } |
132 | | |
133 | | template <size_t N = 0> |
134 | 35.1k | inline auto create_set(PrimitiveType type, bool null_aware) { |
135 | 35.1k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
136 | 35.1k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 31.5k | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 31.5k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 31.5k | } |
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 153 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 153 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 153 | } |
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 2.04k | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 2.04k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 2.04k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 1.16k | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 1.16k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 1.16k | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 171 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 171 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 171 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 34 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 34 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 34 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 12 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 12 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 12 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 134 | 11 | inline auto create_set(PrimitiveType type, bool null_aware) { | 135 | 11 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 136 | 11 | } |
_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 | 3.59k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
139 | 3.59k | if (size == 0) { |
140 | 16 | return create_set<0>(type, null_aware); |
141 | 3.57k | } else if (size == 1) { |
142 | 151 | return create_set<1>(type, null_aware); |
143 | 3.42k | } else if (size == 2) { |
144 | 2.04k | return create_set<2>(type, null_aware); |
145 | 2.04k | } else if (size == 3) { |
146 | 1.14k | return create_set<3>(type, null_aware); |
147 | 1.14k | } else if (size == 4) { |
148 | 169 | return create_set<4>(type, null_aware); |
149 | 169 | } else if (size == 5) { |
150 | 32 | return create_set<5>(type, null_aware); |
151 | 40 | } else if (size == 6) { |
152 | 10 | return create_set<6>(type, null_aware); |
153 | 30 | } else if (size == 7) { |
154 | 9 | return create_set<7>(type, null_aware); |
155 | 21 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
156 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
157 | 14 | } else { |
158 | 14 | return create_set(type, null_aware); |
159 | 14 | } |
160 | 3.59k | } |
161 | | |
162 | 1.39k | inline HybridSetBase* create_string_value_set(bool null_aware) { |
163 | 1.39k | return new StringValueSet(null_aware); |
164 | 1.39k | } |
165 | | |
166 | 1.39k | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
167 | 1.39k | return create_string_value_set(null_aware); |
168 | 1.39k | } |
169 | | |
170 | 23.0k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
171 | 23.0k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
172 | 23.0k | } |
173 | | |
174 | | } // namespace doris |