be/src/exprs/create_predicate_function.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #pragma once |
19 | | |
20 | | #include "common/exception.h" |
21 | | #include "common/status.h" |
22 | | #include "core/data_type/define_primitive_type.h" |
23 | | #include "exprs/function_filter.h" |
24 | | #include "exprs/hybrid_set.h" |
25 | | #include "exprs/minmax_predicate.h" |
26 | | #include "storage/predicate/bitmap_filter_predicate.h" |
27 | | #include "storage/predicate/bloom_filter_predicate.h" |
28 | | #include "storage/predicate/column_predicate.h" |
29 | | #include "storage/predicate/in_list_predicate.h" |
30 | | #include "storage/predicate/like_column_predicate.h" |
31 | | |
32 | | namespace doris { |
33 | | |
34 | | class MinmaxFunctionTraits { |
35 | | public: |
36 | | using BasePtr = MinMaxFuncBase*; |
37 | | template <PrimitiveType type, size_t N> |
38 | 37.7k | static BasePtr get_function(bool null_aware) { |
39 | 37.7k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
40 | 37.7k | return new MinMaxNumFunc< |
41 | 37.7k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
42 | 37.7k | null_aware); |
43 | 37.7k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 126 | static BasePtr get_function(bool null_aware) { | 39 | 126 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 126 | return new MinMaxNumFunc< | 41 | 126 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 126 | null_aware); | 43 | 126 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 5 | static BasePtr get_function(bool null_aware) { | 39 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 5 | return new MinMaxNumFunc< | 41 | 5 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 5 | null_aware); | 43 | 5 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1.46k | static BasePtr get_function(bool null_aware) { | 39 | 1.46k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1.46k | return new MinMaxNumFunc< | 41 | 1.46k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1.46k | null_aware); | 43 | 1.46k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 978 | static BasePtr get_function(bool null_aware) { | 39 | 978 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 978 | return new MinMaxNumFunc< | 41 | 978 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 978 | null_aware); | 43 | 978 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 9.49k | static BasePtr get_function(bool null_aware) { | 39 | 9.49k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 9.49k | return new MinMaxNumFunc< | 41 | 9.49k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 9.49k | null_aware); | 43 | 9.49k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 21.7k | static BasePtr get_function(bool null_aware) { | 39 | 21.7k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 21.7k | return new MinMaxNumFunc< | 41 | 21.7k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 21.7k | null_aware); | 43 | 21.7k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 198 | static BasePtr get_function(bool null_aware) { | 39 | 198 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 198 | return new MinMaxNumFunc< | 41 | 198 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 198 | null_aware); | 43 | 198 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 145 | static BasePtr get_function(bool null_aware) { | 39 | 145 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 145 | return new MinMaxNumFunc< | 41 | 145 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 145 | null_aware); | 43 | 145 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 76 | static BasePtr get_function(bool null_aware) { | 39 | 76 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 76 | return new MinMaxNumFunc< | 41 | 76 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 76 | null_aware); | 43 | 76 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1 | static BasePtr get_function(bool null_aware) { | 39 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1 | return new MinMaxNumFunc< | 41 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1 | null_aware); | 43 | 1 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 7 | static BasePtr get_function(bool null_aware) { | 39 | 7 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 7 | return new MinMaxNumFunc< | 41 | 7 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 7 | null_aware); | 43 | 7 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 795 | static BasePtr get_function(bool null_aware) { | 39 | 795 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 795 | return new MinMaxNumFunc< | 41 | 795 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 795 | null_aware); | 43 | 795 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 649 | static BasePtr get_function(bool null_aware) { | 39 | 649 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 649 | return new MinMaxNumFunc< | 41 | 649 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 649 | null_aware); | 43 | 649 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 2 | static BasePtr get_function(bool null_aware) { | 39 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 2 | return new MinMaxNumFunc< | 41 | 2 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 2 | null_aware); | 43 | 2 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 97 | static BasePtr get_function(bool null_aware) { | 39 | 97 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 97 | return new MinMaxNumFunc< | 41 | 97 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 97 | null_aware); | 43 | 97 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 613 | static BasePtr get_function(bool null_aware) { | 39 | 613 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 613 | return new MinMaxNumFunc< | 41 | 613 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 613 | null_aware); | 43 | 613 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 461 | static BasePtr get_function(bool null_aware) { | 39 | 461 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 461 | return new MinMaxNumFunc< | 41 | 461 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 461 | null_aware); | 43 | 461 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 63 | static BasePtr get_function(bool null_aware) { | 39 | 63 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 63 | return new MinMaxNumFunc< | 41 | 63 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 63 | null_aware); | 43 | 63 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 664 | static BasePtr get_function(bool null_aware) { | 39 | 664 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 664 | return new MinMaxNumFunc< | 41 | 664 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 664 | null_aware); | 43 | 664 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 67 | static BasePtr get_function(bool null_aware) { | 39 | 67 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 67 | return new MinMaxNumFunc< | 41 | 67 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 67 | null_aware); | 43 | 67 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 67 | static BasePtr get_function(bool null_aware) { | 39 | 67 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 67 | return new MinMaxNumFunc< | 41 | 67 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 67 | null_aware); | 43 | 67 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 7 | static BasePtr get_function(bool null_aware) { | 39 | 7 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 7 | return new MinMaxNumFunc< | 41 | 7 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 7 | null_aware); | 43 | 7 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1 | static BasePtr get_function(bool null_aware) { | 39 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1 | return new MinMaxNumFunc< | 41 | 1 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1 | null_aware); | 43 | 1 | } |
|
44 | | }; |
45 | | |
46 | | class HybridSetTraits { |
47 | | public: |
48 | | using BasePtr = HybridSetBase*; |
49 | | template <PrimitiveType type, size_t N> |
50 | 49.3k | static BasePtr get_function(bool null_aware) { |
51 | 49.3k | if constexpr (is_string_type(type)) { |
52 | 1.58k | return new StringSet<>(null_aware); |
53 | 1.58k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
54 | 1.15k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 1.15k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
56 | 2.15k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
57 | 2.15k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 2.15k | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
59 | 44.4k | } else { |
60 | 44.4k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
61 | 44.4k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
62 | 44.4k | } |
63 | 49.3k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 127 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 127 | } else { | 60 | 127 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 127 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 127 | } | 63 | 127 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 10 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 10 | } else { | 60 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 10 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 10 | } | 63 | 10 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 715 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 715 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 715 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 715 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 715 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 415 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 415 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 415 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 415 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 415 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 11.5k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 11.5k | } else { | 60 | 11.5k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 11.5k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 11.5k | } | 63 | 11.5k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 29.6k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 29.6k | } else { | 60 | 29.6k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 29.6k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 29.6k | } | 63 | 29.6k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 238 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 238 | } else { | 60 | 238 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 238 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 238 | } | 63 | 238 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 147 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 147 | } else { | 60 | 147 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 147 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 147 | } | 63 | 147 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 12 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 12 | } else { | 60 | 12 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 12 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 12 | } | 63 | 12 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 22 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 22 | } else { | 60 | 22 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 22 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 22 | } | 63 | 22 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 16 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 16 | } else { | 60 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 16 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 16 | } | 63 | 16 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.08k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 1.08k | } else { | 60 | 1.08k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 1.08k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 1.08k | } | 63 | 1.08k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 720 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 720 | } else { | 60 | 720 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 720 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 720 | } | 63 | 720 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 10 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 10 | } else { | 60 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 10 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 10 | } | 63 | 10 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 144 | static BasePtr get_function(bool null_aware) { | 51 | 144 | if constexpr (is_string_type(type)) { | 52 | 144 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 144 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.01k | static BasePtr get_function(bool null_aware) { | 51 | 1.01k | if constexpr (is_string_type(type)) { | 52 | 1.01k | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1.01k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 428 | static BasePtr get_function(bool null_aware) { | 51 | 428 | if constexpr (is_string_type(type)) { | 52 | 428 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 428 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 101 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 101 | } else { | 60 | 101 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 101 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 101 | } | 63 | 101 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 683 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 683 | } else { | 60 | 683 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 683 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 683 | } | 63 | 683 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 68 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 68 | } else { | 60 | 68 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 68 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 68 | } | 63 | 68 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 92 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 92 | } else { | 60 | 92 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 92 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 92 | } | 63 | 92 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 12 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 12 | } else { | 60 | 12 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 12 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 12 | } | 63 | 12 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | 6 | } else { | 60 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 6 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 6 | } | 63 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 6 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 457 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 457 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 457 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 457 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 457 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 830 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 830 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 830 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 830 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 830 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 255 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 255 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 255 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 255 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 255 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 50 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 50 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 50 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 50 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 50 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 41 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 41 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 41 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 41 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 41 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 4 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 5 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 175 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 175 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 175 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 175 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 175 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 151 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 151 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 151 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 151 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 151 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 5 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 1 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 27 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 27 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 27 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 27 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 27 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 6 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 6 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 9 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 9 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 9 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 9 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 4 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm7EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 11 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 11 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 11 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 11 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 11 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm7EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm7EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 10 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); | 56 | 10 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 10 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 59 | | } else { | 60 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | | } | 63 | 10 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb |
64 | | }; |
65 | | |
66 | | class BloomFilterTraits { |
67 | | public: |
68 | | using BasePtr = BloomFilterFuncBase*; |
69 | | template <PrimitiveType type, size_t N> |
70 | 55.2k | static BasePtr get_function(bool null_aware) { |
71 | 55.2k | return new BloomFilterFunc<type>(null_aware); |
72 | 55.2k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 117 | static BasePtr get_function(bool null_aware) { | 71 | 117 | return new BloomFilterFunc<type>(null_aware); | 72 | 117 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 12 | static BasePtr get_function(bool null_aware) { | 71 | 12 | return new BloomFilterFunc<type>(null_aware); | 72 | 12 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.60k | static BasePtr get_function(bool null_aware) { | 71 | 1.60k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.60k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.08k | static BasePtr get_function(bool null_aware) { | 71 | 1.08k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.08k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 18.2k | static BasePtr get_function(bool null_aware) { | 71 | 18.2k | return new BloomFilterFunc<type>(null_aware); | 72 | 18.2k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 27.5k | static BasePtr get_function(bool null_aware) { | 71 | 27.5k | return new BloomFilterFunc<type>(null_aware); | 72 | 27.5k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 210 | static BasePtr get_function(bool null_aware) { | 71 | 210 | return new BloomFilterFunc<type>(null_aware); | 72 | 210 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 144 | static BasePtr get_function(bool null_aware) { | 71 | 144 | return new BloomFilterFunc<type>(null_aware); | 72 | 144 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 11 | static BasePtr get_function(bool null_aware) { | 71 | 11 | return new BloomFilterFunc<type>(null_aware); | 72 | 11 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 9 | static BasePtr get_function(bool null_aware) { | 71 | 9 | return new BloomFilterFunc<type>(null_aware); | 72 | 9 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 976 | static BasePtr get_function(bool null_aware) { | 71 | 976 | return new BloomFilterFunc<type>(null_aware); | 72 | 976 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 3.56k | static BasePtr get_function(bool null_aware) { | 71 | 3.56k | return new BloomFilterFunc<type>(null_aware); | 72 | 3.56k | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 198 | static BasePtr get_function(bool null_aware) { | 71 | 198 | return new BloomFilterFunc<type>(null_aware); | 72 | 198 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 370 | static BasePtr get_function(bool null_aware) { | 71 | 370 | return new BloomFilterFunc<type>(null_aware); | 72 | 370 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 441 | static BasePtr get_function(bool null_aware) { | 71 | 441 | return new BloomFilterFunc<type>(null_aware); | 72 | 441 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 172 | static BasePtr get_function(bool null_aware) { | 71 | 172 | return new BloomFilterFunc<type>(null_aware); | 72 | 172 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 350 | static BasePtr get_function(bool null_aware) { | 71 | 350 | return new BloomFilterFunc<type>(null_aware); | 72 | 350 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 68 | static BasePtr get_function(bool null_aware) { | 71 | 68 | return new BloomFilterFunc<type>(null_aware); | 72 | 68 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 48 | static BasePtr get_function(bool null_aware) { | 71 | 48 | return new BloomFilterFunc<type>(null_aware); | 72 | 48 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb |
73 | | }; |
74 | | |
75 | | class BitmapFilterTraits { |
76 | | public: |
77 | | using BasePtr = BitmapFilterFuncBase*; |
78 | | template <PrimitiveType type, size_t N> |
79 | 181 | static BasePtr get_function(bool null_aware) { |
80 | 181 | return new BitmapFilterFunc<type>(null_aware); |
81 | 181 | } Unexecuted instantiation: _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_20BitmapFilterFuncBaseEb Unexecuted instantiation: _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_20BitmapFilterFuncBaseEb _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 79 | 9 | static BasePtr get_function(bool null_aware) { | 80 | 9 | return new BitmapFilterFunc<type>(null_aware); | 81 | 9 | } |
_ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 79 | 172 | static BasePtr get_function(bool null_aware) { | 80 | 172 | return new BitmapFilterFunc<type>(null_aware); | 81 | 172 | } |
|
82 | | }; |
83 | | |
84 | | template <class Traits> |
85 | | class PredicateFunctionCreator { |
86 | | public: |
87 | | template <PrimitiveType type, size_t N = 0> |
88 | 142k | static typename Traits::BasePtr create(bool null_aware) { |
89 | 142k | return Traits::template get_function<type, N>(null_aware); |
90 | 142k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 127 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 127 | return Traits::template get_function<type, N>(null_aware); | 90 | 127 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 10 | return Traits::template get_function<type, N>(null_aware); | 90 | 10 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 718 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 718 | return Traits::template get_function<type, N>(null_aware); | 90 | 718 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 415 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 415 | return Traits::template get_function<type, N>(null_aware); | 90 | 415 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 11.5k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 11.5k | return Traits::template get_function<type, N>(null_aware); | 90 | 11.5k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 29.6k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 29.6k | return Traits::template get_function<type, N>(null_aware); | 90 | 29.6k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 239 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 239 | return Traits::template get_function<type, N>(null_aware); | 90 | 239 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 147 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 147 | return Traits::template get_function<type, N>(null_aware); | 90 | 147 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 12 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 12 | return Traits::template get_function<type, N>(null_aware); | 90 | 12 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 22 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 22 | return Traits::template get_function<type, N>(null_aware); | 90 | 22 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 16 | return Traits::template get_function<type, N>(null_aware); | 90 | 16 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1.08k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.08k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.08k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 720 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 720 | return Traits::template get_function<type, N>(null_aware); | 90 | 720 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 10 | return Traits::template get_function<type, N>(null_aware); | 90 | 10 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 144 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 144 | return Traits::template get_function<type, N>(null_aware); | 90 | 144 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1.01k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.01k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.01k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 428 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 428 | return Traits::template get_function<type, N>(null_aware); | 90 | 428 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 101 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 101 | return Traits::template get_function<type, N>(null_aware); | 90 | 101 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 683 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 683 | return Traits::template get_function<type, N>(null_aware); | 90 | 683 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 68 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 68 | return Traits::template get_function<type, N>(null_aware); | 90 | 68 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 92 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 92 | return Traits::template get_function<type, N>(null_aware); | 90 | 92 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 12 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 12 | return Traits::template get_function<type, N>(null_aware); | 90 | 12 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 457 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 457 | return Traits::template get_function<type, N>(null_aware); | 90 | 457 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 830 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 830 | return Traits::template get_function<type, N>(null_aware); | 90 | 830 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 255 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 255 | return Traits::template get_function<type, N>(null_aware); | 90 | 255 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 50 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 50 | return Traits::template get_function<type, N>(null_aware); | 90 | 50 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 41 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 41 | return Traits::template get_function<type, N>(null_aware); | 90 | 41 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm2EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 8 | return Traits::template get_function<type, N>(null_aware); | 90 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 175 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 175 | return Traits::template get_function<type, N>(null_aware); | 90 | 175 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 151 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 151 | return Traits::template get_function<type, N>(null_aware); | 90 | 151 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm3EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 27 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 27 | return Traits::template get_function<type, N>(null_aware); | 90 | 27 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3 | return Traits::template get_function<type, N>(null_aware); | 90 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 6 | return Traits::template get_function<type, N>(null_aware); | 90 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9 | return Traits::template get_function<type, N>(null_aware); | 90 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 4 | return Traits::template get_function<type, N>(null_aware); | 90 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm7EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 11 | return Traits::template get_function<type, N>(null_aware); | 90 | 11 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm7EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm7EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 10 | return Traits::template get_function<type, N>(null_aware); | 90 | 10 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 126 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 126 | return Traits::template get_function<type, N>(null_aware); | 90 | 126 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 5 | return Traits::template get_function<type, N>(null_aware); | 90 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1.46k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.46k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.46k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 979 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 979 | return Traits::template get_function<type, N>(null_aware); | 90 | 979 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 9.48k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9.48k | return Traits::template get_function<type, N>(null_aware); | 90 | 9.48k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 21.7k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 21.7k | return Traits::template get_function<type, N>(null_aware); | 90 | 21.7k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 198 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 198 | return Traits::template get_function<type, N>(null_aware); | 90 | 198 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 145 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 145 | return Traits::template get_function<type, N>(null_aware); | 90 | 145 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 76 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 76 | return Traits::template get_function<type, N>(null_aware); | 90 | 76 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 7 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 7 | return Traits::template get_function<type, N>(null_aware); | 90 | 7 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 795 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 795 | return Traits::template get_function<type, N>(null_aware); | 90 | 795 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 649 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 649 | return Traits::template get_function<type, N>(null_aware); | 90 | 649 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2 | return Traits::template get_function<type, N>(null_aware); | 90 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 97 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 97 | return Traits::template get_function<type, N>(null_aware); | 90 | 97 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 614 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 614 | return Traits::template get_function<type, N>(null_aware); | 90 | 614 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 461 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 461 | return Traits::template get_function<type, N>(null_aware); | 90 | 461 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 63 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 63 | return Traits::template get_function<type, N>(null_aware); | 90 | 63 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 664 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 664 | return Traits::template get_function<type, N>(null_aware); | 90 | 664 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 67 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 67 | return Traits::template get_function<type, N>(null_aware); | 90 | 67 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 67 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 67 | return Traits::template get_function<type, N>(null_aware); | 90 | 67 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 7 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 7 | return Traits::template get_function<type, N>(null_aware); | 90 | 7 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 117 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 117 | return Traits::template get_function<type, N>(null_aware); | 90 | 117 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 12 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 12 | return Traits::template get_function<type, N>(null_aware); | 90 | 12 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.60k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.60k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.60k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.08k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.08k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.08k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 18.2k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 18.2k | return Traits::template get_function<type, N>(null_aware); | 90 | 18.2k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 27.5k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 27.5k | return Traits::template get_function<type, N>(null_aware); | 90 | 27.5k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 210 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 210 | return Traits::template get_function<type, N>(null_aware); | 90 | 210 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 144 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 144 | return Traits::template get_function<type, N>(null_aware); | 90 | 144 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 11 | return Traits::template get_function<type, N>(null_aware); | 90 | 11 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9 | return Traits::template get_function<type, N>(null_aware); | 90 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 977 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 977 | return Traits::template get_function<type, N>(null_aware); | 90 | 977 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 3.54k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3.54k | return Traits::template get_function<type, N>(null_aware); | 90 | 3.54k | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 197 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 197 | return Traits::template get_function<type, N>(null_aware); | 90 | 197 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 370 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 370 | return Traits::template get_function<type, N>(null_aware); | 90 | 370 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 441 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 441 | return Traits::template get_function<type, N>(null_aware); | 90 | 441 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 172 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 172 | return Traits::template get_function<type, N>(null_aware); | 90 | 172 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 350 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 350 | return Traits::template get_function<type, N>(null_aware); | 90 | 350 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 68 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 68 | return Traits::template get_function<type, N>(null_aware); | 90 | 68 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 48 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 48 | return Traits::template get_function<type, N>(null_aware); | 90 | 48 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_20BitmapFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_20BitmapFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 88 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 9 | return Traits::template get_function<type, N>(null_aware); | 90 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 88 | 172 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 172 | return Traits::template get_function<type, N>(null_aware); | 90 | 172 | } |
|
91 | | }; |
92 | | |
93 | | #define APPLY_FOR_PRIMTYPE(M) \ |
94 | 3.79k | M(TYPE_TINYINT) \ |
95 | 3.79k | M(TYPE_SMALLINT) \ |
96 | 40.8k | M(TYPE_INT) \ |
97 | 79.4k | M(TYPE_BIGINT) \ |
98 | 79.4k | M(TYPE_LARGEINT) \ |
99 | 652 | M(TYPE_FLOAT) \ |
100 | 439 | M(TYPE_DOUBLE) \ |
101 | 109 | M(TYPE_DATE) \ |
102 | 42 | M(TYPE_DATETIME) \ |
103 | 2.91k | M(TYPE_DATEV2) \ |
104 | 4.96k | M(TYPE_DATETIMEV2) \ |
105 | 4.96k | M(TYPE_TIMESTAMPTZ) \ |
106 | 457 | M(TYPE_CHAR) \ |
107 | 2.31k | M(TYPE_VARCHAR) \ |
108 | 2.31k | M(TYPE_STRING) \ |
109 | 1.38k | M(TYPE_DECIMAL32) \ |
110 | 1.70k | M(TYPE_DECIMAL64) \ |
111 | 1.70k | M(TYPE_DECIMAL128I) \ |
112 | 215 | M(TYPE_DECIMAL256) \ |
113 | 215 | M(TYPE_IPV4) \ |
114 | 36 | M(TYPE_IPV6) |
115 | | |
116 | | template <class Traits, size_t N = 0> |
117 | 142k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
118 | 142k | using Creator = PredicateFunctionCreator<Traits>; |
119 | | |
120 | 142k | switch (type) { |
121 | 373 | case TYPE_BOOLEAN: { |
122 | 373 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
123 | 0 | } |
124 | 28 | case TYPE_DECIMALV2: { |
125 | 28 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
126 | 0 | } |
127 | 0 | #define M(NAME) \ |
128 | 142k | case NAME: { \ |
129 | 142k | return Creator::template create<NAME, N>(null_aware); \ |
130 | 142k | } |
131 | 142k | APPLY_FOR_PRIMTYPE(M) |
132 | 0 | #undef M |
133 | 0 | default: |
134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); |
135 | 142k | } |
136 | | |
137 | 0 | return nullptr; |
138 | 142k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 47.2k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 47.2k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 47.2k | switch (type) { | 121 | 127 | case TYPE_BOOLEAN: { | 122 | 127 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 10 | case TYPE_DECIMALV2: { | 125 | 10 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 10 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 47.2k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 47.2k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 481 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 481 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 481 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 481 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 481 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 1.23k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 1.23k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 1.23k | switch (type) { | 121 | 3 | case TYPE_BOOLEAN: { | 122 | 3 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 1.23k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 1.23k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 364 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 364 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 364 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 1 | case TYPE_DECIMALV2: { | 125 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 1 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 364 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 364 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 51 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 51 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 51 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 51 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 51 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 20 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 20 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 20 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 20 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 20 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 9 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 9 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 9 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 9 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 9 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 15 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 15 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 15 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 15 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 15 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm8EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 10 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 10 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 10 | switch (type) { | 121 | 0 | case TYPE_BOOLEAN: { | 122 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 0 | case TYPE_DECIMALV2: { | 125 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 0 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 10 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 10 | } |
_ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 37.7k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 37.7k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 37.7k | switch (type) { | 121 | 126 | case TYPE_BOOLEAN: { | 122 | 126 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 5 | case TYPE_DECIMALV2: { | 125 | 5 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 5 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 37.7k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 37.7k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 55.2k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 55.2k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 55.2k | switch (type) { | 121 | 117 | case TYPE_BOOLEAN: { | 122 | 117 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 12 | case TYPE_DECIMALV2: { | 125 | 12 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 126 | 0 | } | 127 | 0 | #define M(NAME) \ | 128 | 0 | case NAME: { \ | 129 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 130 | 0 | } | 131 | 12 | APPLY_FOR_PRIMTYPE(M) | 132 | 0 | #undef M | 133 | 0 | default: | 134 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 135 | 55.2k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 55.2k | } |
|
139 | | |
140 | | template <class Traits> |
141 | 181 | typename Traits::BasePtr create_bitmap_predicate_function(PrimitiveType type) { |
142 | 181 | using Creator = PredicateFunctionCreator<Traits>; |
143 | | |
144 | 181 | switch (type) { |
145 | 0 | case TYPE_TINYINT: |
146 | 0 | return Creator::template create<TYPE_TINYINT>(false); |
147 | 0 | case TYPE_SMALLINT: |
148 | 0 | return Creator::template create<TYPE_SMALLINT>(false); |
149 | 9 | case TYPE_INT: |
150 | 9 | return Creator::template create<TYPE_INT>(false); |
151 | 172 | case TYPE_BIGINT: |
152 | 172 | return Creator::template create<TYPE_BIGINT>(false); |
153 | 0 | default: |
154 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, |
155 | 0 | "bitmap predicate with type " + type_to_string(type)); |
156 | 181 | } |
157 | | |
158 | 0 | return nullptr; |
159 | 181 | } |
160 | | |
161 | 37.8k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
162 | 37.8k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
163 | 37.8k | } |
164 | | |
165 | | template <size_t N = 0> |
166 | 49.4k | inline auto create_set(PrimitiveType type, bool null_aware) { |
167 | 49.4k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
168 | 49.4k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 47.2k | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 47.2k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 47.2k | } |
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 481 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 481 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 481 | } |
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 1.23k | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 1.23k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 1.23k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 364 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 364 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 364 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 51 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 51 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 51 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 20 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 20 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 20 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 9 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 9 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 9 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 15 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 15 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 15 | } |
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 10 | } |
|
169 | | |
170 | 2.32k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
171 | 2.32k | if (size == 0) { |
172 | 12 | return create_set<0>(type, null_aware); |
173 | 2.31k | } else if (size == 1) { |
174 | 479 | return create_set<1>(type, null_aware); |
175 | 1.83k | } else if (size == 2) { |
176 | 1.22k | return create_set<2>(type, null_aware); |
177 | 1.22k | } else if (size == 3) { |
178 | 344 | return create_set<3>(type, null_aware); |
179 | 344 | } else if (size == 4) { |
180 | 49 | return create_set<4>(type, null_aware); |
181 | 211 | } else if (size == 5) { |
182 | 18 | return create_set<5>(type, null_aware); |
183 | 193 | } else if (size == 6) { |
184 | 7 | return create_set<6>(type, null_aware); |
185 | 186 | } else if (size == 7) { |
186 | 13 | return create_set<7>(type, null_aware); |
187 | 173 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
188 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
189 | 166 | } else { |
190 | 166 | return create_set(type, null_aware); |
191 | 166 | } |
192 | 2.32k | } |
193 | | |
194 | 518 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
195 | 518 | return new StringValueSet(null_aware); |
196 | 518 | } |
197 | | |
198 | 518 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
199 | 518 | return create_string_value_set(null_aware); |
200 | 518 | } |
201 | | |
202 | 55.4k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
203 | 55.4k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
204 | 55.4k | } |
205 | | |
206 | 181 | inline auto create_bitmap_filter(PrimitiveType type) { |
207 | 181 | return create_bitmap_predicate_function<BitmapFilterTraits>(type); |
208 | 181 | } |
209 | | |
210 | | template <PrimitiveType PT> |
211 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
212 | | uint32_t column_id, const std::shared_ptr<BloomFilterFuncBase>& filter, const TabletColumn*, |
213 | | bool null_aware) { |
214 | | std::shared_ptr<BloomFilterFuncBase> filter_olap; |
215 | | filter_olap.reset(create_bloom_filter(PT, null_aware)); |
216 | | filter_olap->light_copy(filter.get()); |
217 | | // create a new filter to match the input filter and PT. For example, filter may be varchar, but PT is char |
218 | | return BloomFilterColumnPredicate<PT>::create_shared(column_id, filter_olap); |
219 | | } |
220 | | |
221 | | template <PrimitiveType PT> |
222 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
223 | | uint32_t column_id, const std::shared_ptr<BitmapFilterFuncBase>& filter, |
224 | | const TabletColumn*, bool) { |
225 | | if constexpr (PT == TYPE_TINYINT || PT == TYPE_SMALLINT || PT == TYPE_INT || |
226 | | PT == TYPE_BIGINT) { |
227 | | return BitmapFilterColumnPredicate<PT>::create_shared(column_id, filter); |
228 | | } else { |
229 | | throw Exception(ErrorCode::INTERNAL_ERROR, "bitmap filter do not support type {}", PT); |
230 | | } |
231 | | } |
232 | | |
233 | | template <PrimitiveType PT> |
234 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
235 | | uint32_t column_id, const std::shared_ptr<HybridSetBase>& filter, |
236 | | const TabletColumn* column, bool) { |
237 | | return create_in_list_predicate<PT, PredicateType::IN_LIST>(column_id, filter, |
238 | | column->length()); |
239 | | } |
240 | | |
241 | | template <PrimitiveType PT> |
242 | | std::shared_ptr<ColumnPredicate> create_olap_column_predicate( |
243 | | uint32_t column_id, const std::shared_ptr<FunctionFilter>& filter, |
244 | 396 | const TabletColumn* column, bool) { |
245 | | // currently only support like predicate |
246 | 396 | if constexpr (PT == TYPE_CHAR) { |
247 | 19 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, |
248 | 19 | column->name(), filter->_fn_ctx, |
249 | 19 | filter->_string_param); |
250 | 377 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { |
251 | 377 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, |
252 | 377 | column->name(), filter->_fn_ctx, |
253 | 377 | filter->_string_param); |
254 | 377 | } |
255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); |
256 | 396 | } Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE3EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE4EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE5EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE6EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE7EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE8EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE9EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE11EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE12EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE25EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE26EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE42EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE15EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 19 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | 19 | if constexpr (PT == TYPE_CHAR) { | 247 | 19 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | 19 | column->name(), filter->_fn_ctx, | 249 | 19 | filter->_string_param); | 250 | | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | | column->name(), filter->_fn_ctx, | 253 | | filter->_string_param); | 254 | | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 19 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 326 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | | if constexpr (PT == TYPE_CHAR) { | 247 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | | column->name(), filter->_fn_ctx, | 249 | | filter->_string_param); | 250 | 326 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | 326 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | 326 | column->name(), filter->_fn_ctx, | 253 | 326 | filter->_string_param); | 254 | 326 | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 326 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 51 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | | if constexpr (PT == TYPE_CHAR) { | 247 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | | column->name(), filter->_fn_ctx, | 249 | | filter->_string_param); | 250 | 51 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | 51 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | 51 | column->name(), filter->_fn_ctx, | 253 | 51 | filter->_string_param); | 254 | 51 | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 51 | } |
Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE28EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE29EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE30EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE35EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE36EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE37EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE20EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE2EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb |
257 | | |
258 | | template <typename T> |
259 | | std::shared_ptr<ColumnPredicate> create_column_predicate(uint32_t column_id, |
260 | | const std::shared_ptr<T>& filter, |
261 | | FieldType type, const TabletColumn* column, |
262 | 398 | bool null_aware = false) { |
263 | 398 | switch (type) { |
264 | 0 | #define M(NAME) \ |
265 | 397 | case FieldType::OLAP_FIELD_##NAME: { \ |
266 | 397 | return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \ |
267 | 397 | } |
268 | 397 | APPLY_FOR_PRIMTYPE(M) |
269 | 0 | #undef M |
270 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL: { |
271 | 0 | return create_olap_column_predicate<TYPE_DECIMALV2>(column_id, filter, column, null_aware); |
272 | 0 | } |
273 | 0 | case FieldType::OLAP_FIELD_TYPE_BOOL: { |
274 | 0 | return create_olap_column_predicate<TYPE_BOOLEAN>(column_id, filter, column, null_aware); |
275 | 0 | } |
276 | 0 | default: |
277 | 0 | return nullptr; |
278 | 398 | } |
279 | 398 | } |
280 | | |
281 | | } // namespace doris |