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.4k | static BasePtr get_function(bool null_aware) { |
39 | 37.4k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
40 | 37.4k | return new MinMaxNumFunc< |
41 | 37.4k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
42 | 37.4k | null_aware); |
43 | 37.4k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 224 | static BasePtr get_function(bool null_aware) { | 39 | 224 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 224 | return new MinMaxNumFunc< | 41 | 224 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 224 | null_aware); | 43 | 224 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_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_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1.06k | static BasePtr get_function(bool null_aware) { | 39 | 1.06k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1.06k | return new MinMaxNumFunc< | 41 | 1.06k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1.06k | null_aware); | 43 | 1.06k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 555 | static BasePtr get_function(bool null_aware) { | 39 | 555 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 555 | return new MinMaxNumFunc< | 41 | 555 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 555 | null_aware); | 43 | 555 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 10.1k | static BasePtr get_function(bool null_aware) { | 39 | 10.1k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 10.1k | return new MinMaxNumFunc< | 41 | 10.1k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 10.1k | null_aware); | 43 | 10.1k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 21.1k | static BasePtr get_function(bool null_aware) { | 39 | 21.1k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 21.1k | return new MinMaxNumFunc< | 41 | 21.1k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 21.1k | null_aware); | 43 | 21.1k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 153 | static BasePtr get_function(bool null_aware) { | 39 | 153 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 153 | return new MinMaxNumFunc< | 41 | 153 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 153 | null_aware); | 43 | 153 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 289 | static BasePtr get_function(bool null_aware) { | 39 | 289 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 289 | return new MinMaxNumFunc< | 41 | 289 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 289 | null_aware); | 43 | 289 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 33 | static BasePtr get_function(bool null_aware) { | 39 | 33 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 33 | return new MinMaxNumFunc< | 41 | 33 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 33 | null_aware); | 43 | 33 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 19 | static BasePtr get_function(bool null_aware) { | 39 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 19 | return new MinMaxNumFunc< | 41 | 19 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 19 | null_aware); | 43 | 19 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 934 | static BasePtr get_function(bool null_aware) { | 39 | 934 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 934 | return new MinMaxNumFunc< | 41 | 934 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 934 | null_aware); | 43 | 934 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 904 | static BasePtr get_function(bool null_aware) { | 39 | 904 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 904 | return new MinMaxNumFunc< | 41 | 904 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 904 | null_aware); | 43 | 904 | } |
_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 | 69 | static BasePtr get_function(bool null_aware) { | 39 | 69 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 69 | return new MinMaxNumFunc< | 41 | 69 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 69 | null_aware); | 43 | 69 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 363 | static BasePtr get_function(bool null_aware) { | 39 | 363 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 363 | return new MinMaxNumFunc< | 41 | 363 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 363 | null_aware); | 43 | 363 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 710 | static BasePtr get_function(bool null_aware) { | 39 | 710 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 710 | return new MinMaxNumFunc< | 41 | 710 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 710 | null_aware); | 43 | 710 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 55 | static BasePtr get_function(bool null_aware) { | 39 | 55 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 55 | return new MinMaxNumFunc< | 41 | 55 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 55 | null_aware); | 43 | 55 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 477 | static BasePtr get_function(bool null_aware) { | 39 | 477 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 477 | return new MinMaxNumFunc< | 41 | 477 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 477 | null_aware); | 43 | 477 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 202 | static BasePtr get_function(bool null_aware) { | 39 | 202 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 202 | return new MinMaxNumFunc< | 41 | 202 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 202 | null_aware); | 43 | 202 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 29 | static BasePtr get_function(bool null_aware) { | 39 | 29 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 29 | return new MinMaxNumFunc< | 41 | 29 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 29 | null_aware); | 43 | 29 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_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_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 | 59.2k | static BasePtr get_function(bool null_aware) { |
51 | 59.2k | if constexpr (is_string_type(type)) { |
52 | 1.62k | return new StringSet<>(null_aware); |
53 | 1.62k | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { |
54 | 1.14k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 1.14k | return new HybridSet<type, BitSetContainer<CppType>>(null_aware); |
56 | 2.18k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
57 | 2.18k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 2.18k | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
59 | 54.2k | } else { |
60 | 54.2k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
61 | 54.2k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
62 | 54.2k | } |
63 | 59.2k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 233 | 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 | 233 | } else { | 60 | 233 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 233 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 233 | } | 63 | 233 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_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 | | } 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 | 2 | } else { | 60 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 2 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 2 | } | 63 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 659 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 659 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 659 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 659 | 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 | 659 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 460 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 460 | } else if constexpr (type == TYPE_TINYINT || type == TYPE_SMALLINT) { | 54 | 460 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 460 | 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 | 460 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 17.8k | 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 | 17.8k | } else { | 60 | 17.8k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 17.8k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 17.8k | } | 63 | 17.8k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 30.0k | 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 | 30.0k | } else { | 60 | 30.0k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 30.0k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 30.0k | } | 63 | 30.0k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 191 | 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 | 191 | } else { | 60 | 191 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 191 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 191 | } | 63 | 191 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 291 | 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 | 291 | } else { | 60 | 291 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 291 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 291 | } | 63 | 291 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 14 | 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 | 14 | } else { | 60 | 14 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 14 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 14 | } | 63 | 14 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_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 | | } 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 | 8 | } else { | 60 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 8 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 8 | } | 63 | 8 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 30 | 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 | 30 | } else { | 60 | 30 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 30 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 30 | } | 63 | 30 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.11k | 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.11k | } else { | 60 | 1.11k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 1.11k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 1.11k | } | 63 | 1.11k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3.43k | 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 | 3.43k | } else { | 60 | 3.43k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 3.43k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 3.43k | } | 63 | 3.43k | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 83 | static BasePtr get_function(bool null_aware) { | 51 | 83 | if constexpr (is_string_type(type)) { | 52 | 83 | 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 | 83 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 758 | static BasePtr get_function(bool null_aware) { | 51 | 758 | if constexpr (is_string_type(type)) { | 52 | 758 | 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 | 758 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 782 | static BasePtr get_function(bool null_aware) { | 51 | 782 | if constexpr (is_string_type(type)) { | 52 | 782 | 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 | 782 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 71 | 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 | 71 | } else { | 60 | 71 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 71 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 71 | } | 63 | 71 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 797 | 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 | 797 | } else { | 60 | 797 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 797 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 797 | } | 63 | 797 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 82 | 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 | 82 | } else { | 60 | 82 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 82 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 82 | } | 63 | 82 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 84 | 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 | 84 | } else { | 60 | 84 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 84 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 84 | } | 63 | 84 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_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 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_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 | | } 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 | 2 | } else { | 60 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 61 | 2 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 62 | 2 | } | 63 | 2 | } |
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 | 834 | 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 | 834 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 834 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 834 | 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 | 834 | } |
_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 | 67 | 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 | 67 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 67 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 67 | 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 | 67 | } |
_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 | 178 | 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 | 178 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 57 | 178 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 178 | 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 | 178 | } |
_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 | 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_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 | 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_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 | 48.7k | static BasePtr get_function(bool null_aware) { |
71 | 48.7k | return new BloomFilterFunc<type>(null_aware); |
72 | 48.7k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 234 | static BasePtr get_function(bool null_aware) { | 71 | 234 | return new BloomFilterFunc<type>(null_aware); | 72 | 234 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 2.99k | static BasePtr get_function(bool null_aware) { | 71 | 2.99k | return new BloomFilterFunc<type>(null_aware); | 72 | 2.99k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.29k | static BasePtr get_function(bool null_aware) { | 71 | 1.29k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.29k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 11.7k | static BasePtr get_function(bool null_aware) { | 71 | 11.7k | return new BloomFilterFunc<type>(null_aware); | 72 | 11.7k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 26.7k | static BasePtr get_function(bool null_aware) { | 71 | 26.7k | return new BloomFilterFunc<type>(null_aware); | 72 | 26.7k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 161 | static BasePtr get_function(bool null_aware) { | 71 | 161 | return new BloomFilterFunc<type>(null_aware); | 72 | 161 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 288 | static BasePtr get_function(bool null_aware) { | 71 | 288 | return new BloomFilterFunc<type>(null_aware); | 72 | 288 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 16 | static BasePtr get_function(bool null_aware) { | 71 | 16 | return new BloomFilterFunc<type>(null_aware); | 72 | 16 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 9 | static BasePtr get_function(bool null_aware) { | 71 | 9 | return new BloomFilterFunc<type>(null_aware); | 72 | 9 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.20k | static BasePtr get_function(bool null_aware) { | 71 | 1.20k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.20k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 1.02k | static BasePtr get_function(bool null_aware) { | 71 | 1.02k | return new BloomFilterFunc<type>(null_aware); | 72 | 1.02k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 6 | static BasePtr get_function(bool null_aware) { | 71 | 6 | return new BloomFilterFunc<type>(null_aware); | 72 | 6 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 268 | static BasePtr get_function(bool null_aware) { | 71 | 268 | return new BloomFilterFunc<type>(null_aware); | 72 | 268 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 675 | static BasePtr get_function(bool null_aware) { | 71 | 675 | return new BloomFilterFunc<type>(null_aware); | 72 | 675 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 838 | static BasePtr get_function(bool null_aware) { | 71 | 838 | return new BloomFilterFunc<type>(null_aware); | 72 | 838 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 127 | static BasePtr get_function(bool null_aware) { | 71 | 127 | return new BloomFilterFunc<type>(null_aware); | 72 | 127 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 794 | static BasePtr get_function(bool null_aware) { | 71 | 794 | return new BloomFilterFunc<type>(null_aware); | 72 | 794 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 155 | static BasePtr get_function(bool null_aware) { | 71 | 155 | return new BloomFilterFunc<type>(null_aware); | 72 | 155 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 70 | 78 | static BasePtr get_function(bool null_aware) { | 71 | 78 | return new BloomFilterFunc<type>(null_aware); | 72 | 78 | } |
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 | 141 | static BasePtr get_function(bool null_aware) { |
80 | 141 | return new BitmapFilterFunc<type>(null_aware); |
81 | 141 | } 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 | 132 | static BasePtr get_function(bool null_aware) { | 80 | 132 | return new BitmapFilterFunc<type>(null_aware); | 81 | 132 | } |
|
82 | | }; |
83 | | |
84 | | template <class Traits> |
85 | | class PredicateFunctionCreator { |
86 | | public: |
87 | | template <PrimitiveType type, size_t N = 0> |
88 | 145k | static typename Traits::BasePtr create(bool null_aware) { |
89 | 145k | return Traits::template get_function<type, N>(null_aware); |
90 | 145k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 233 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 233 | return Traits::template get_function<type, N>(null_aware); | 90 | 233 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_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_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 658 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 658 | return Traits::template get_function<type, N>(null_aware); | 90 | 658 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 459 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 459 | return Traits::template get_function<type, N>(null_aware); | 90 | 459 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 17.8k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 17.8k | return Traits::template get_function<type, N>(null_aware); | 90 | 17.8k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 30.0k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 30.0k | return Traits::template get_function<type, N>(null_aware); | 90 | 30.0k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 191 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 191 | return Traits::template get_function<type, N>(null_aware); | 90 | 191 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 291 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 291 | return Traits::template get_function<type, N>(null_aware); | 90 | 291 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 14 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 14 | return Traits::template get_function<type, N>(null_aware); | 90 | 14 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 30 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 30 | return Traits::template get_function<type, N>(null_aware); | 90 | 30 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 1.11k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.11k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.11k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 3.42k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 3.42k | return Traits::template get_function<type, N>(null_aware); | 90 | 3.42k | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 82 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 82 | return Traits::template get_function<type, N>(null_aware); | 90 | 82 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 756 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 756 | return Traits::template get_function<type, N>(null_aware); | 90 | 756 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 782 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 782 | return Traits::template get_function<type, N>(null_aware); | 90 | 782 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 71 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 71 | return Traits::template get_function<type, N>(null_aware); | 90 | 71 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 797 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 797 | return Traits::template get_function<type, N>(null_aware); | 90 | 797 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 82 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 82 | return Traits::template get_function<type, N>(null_aware); | 90 | 82 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 88 | 84 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 84 | return Traits::template get_function<type, N>(null_aware); | 90 | 84 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_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_13PrimitiveTypeE37ELm0EEEPNS_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_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 | 834 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 834 | return Traits::template get_function<type, N>(null_aware); | 90 | 834 | } |
_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 | 67 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 67 | return Traits::template get_function<type, N>(null_aware); | 90 | 67 | } |
_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 | 178 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 178 | return Traits::template get_function<type, N>(null_aware); | 90 | 178 | } |
_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 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1 | return Traits::template get_function<type, N>(null_aware); | 90 | 1 | } |
_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 | 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_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 | 224 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 224 | return Traits::template get_function<type, N>(null_aware); | 90 | 224 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_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_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 1.06k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.06k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.06k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 555 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 555 | return Traits::template get_function<type, N>(null_aware); | 90 | 555 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 10.1k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 10.1k | return Traits::template get_function<type, N>(null_aware); | 90 | 10.1k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 21.2k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 21.2k | return Traits::template get_function<type, N>(null_aware); | 90 | 21.2k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 153 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 153 | return Traits::template get_function<type, N>(null_aware); | 90 | 153 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 289 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 289 | return Traits::template get_function<type, N>(null_aware); | 90 | 289 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 33 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 33 | return Traits::template get_function<type, N>(null_aware); | 90 | 33 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_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_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 19 | return Traits::template get_function<type, N>(null_aware); | 90 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 934 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 934 | return Traits::template get_function<type, N>(null_aware); | 90 | 934 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 904 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 904 | return Traits::template get_function<type, N>(null_aware); | 90 | 904 | } |
_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 | 69 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 69 | return Traits::template get_function<type, N>(null_aware); | 90 | 69 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 363 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 363 | return Traits::template get_function<type, N>(null_aware); | 90 | 363 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 710 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 710 | return Traits::template get_function<type, N>(null_aware); | 90 | 710 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 55 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 55 | return Traits::template get_function<type, N>(null_aware); | 90 | 55 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 477 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 477 | return Traits::template get_function<type, N>(null_aware); | 90 | 477 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 202 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 202 | return Traits::template get_function<type, N>(null_aware); | 90 | 202 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 88 | 29 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 29 | return Traits::template get_function<type, N>(null_aware); | 90 | 29 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_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_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 | 234 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 234 | return Traits::template get_function<type, N>(null_aware); | 90 | 234 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 2.99k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 2.99k | return Traits::template get_function<type, N>(null_aware); | 90 | 2.99k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.29k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.29k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.29k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 11.7k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 11.7k | return Traits::template get_function<type, N>(null_aware); | 90 | 11.7k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 26.7k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 26.7k | return Traits::template get_function<type, N>(null_aware); | 90 | 26.7k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 161 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 161 | return Traits::template get_function<type, N>(null_aware); | 90 | 161 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 288 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 288 | return Traits::template get_function<type, N>(null_aware); | 90 | 288 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_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 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.20k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.20k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.20k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 1.02k | static typename Traits::BasePtr create(bool null_aware) { | 89 | 1.02k | return Traits::template get_function<type, N>(null_aware); | 90 | 1.02k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 268 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 268 | return Traits::template get_function<type, N>(null_aware); | 90 | 268 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 674 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 674 | return Traits::template get_function<type, N>(null_aware); | 90 | 674 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 838 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 838 | return Traits::template get_function<type, N>(null_aware); | 90 | 838 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 794 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 794 | return Traits::template get_function<type, N>(null_aware); | 90 | 794 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 155 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 155 | return Traits::template get_function<type, N>(null_aware); | 90 | 155 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 88 | 78 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 78 | return Traits::template get_function<type, N>(null_aware); | 90 | 78 | } |
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 | 132 | static typename Traits::BasePtr create(bool null_aware) { | 89 | 132 | return Traits::template get_function<type, N>(null_aware); | 90 | 132 | } |
|
91 | | }; |
92 | | |
93 | | #define APPLY_FOR_PRIMTYPE(M) \ |
94 | 4.72k | M(TYPE_TINYINT) \ |
95 | 4.72k | M(TYPE_SMALLINT) \ |
96 | 41.4k | M(TYPE_INT) \ |
97 | 78.4k | M(TYPE_BIGINT) \ |
98 | 78.4k | M(TYPE_LARGEINT) \ |
99 | 871 | M(TYPE_FLOAT) \ |
100 | 871 | M(TYPE_DOUBLE) \ |
101 | 73 | M(TYPE_DATE) \ |
102 | 59 | M(TYPE_DATETIME) \ |
103 | 3.32k | M(TYPE_DATEV2) \ |
104 | 5.40k | M(TYPE_DATETIMEV2) \ |
105 | 5.40k | M(TYPE_TIMESTAMPTZ) \ |
106 | 428 | M(TYPE_CHAR) \ |
107 | 2.21k | M(TYPE_VARCHAR) \ |
108 | 2.37k | M(TYPE_STRING) \ |
109 | 2.37k | M(TYPE_DECIMAL32) \ |
110 | 2.07k | M(TYPE_DECIMAL64) \ |
111 | 2.07k | M(TYPE_DECIMAL128I) \ |
112 | 449 | M(TYPE_DECIMAL256) \ |
113 | 199 | M(TYPE_IPV4) \ |
114 | 28 | M(TYPE_IPV6) |
115 | | |
116 | | template <class Traits, size_t N = 0> |
117 | 145k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
118 | 145k | using Creator = PredicateFunctionCreator<Traits>; |
119 | | |
120 | 145k | switch (type) { |
121 | 694 | case TYPE_BOOLEAN: { |
122 | 694 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
123 | 0 | } |
124 | 4 | case TYPE_DECIMALV2: { |
125 | 4 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
126 | 0 | } |
127 | 0 | #define M(NAME) \ |
128 | 144k | case NAME: { \ |
129 | 144k | return Creator::template create<NAME, N>(null_aware); \ |
130 | 144k | } |
131 | 144k | 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 | 145k | } |
136 | | |
137 | 0 | return nullptr; |
138 | 145k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 56.9k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 56.9k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 56.9k | switch (type) { | 121 | 233 | case TYPE_BOOLEAN: { | 122 | 233 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 123 | 0 | } | 124 | 2 | case TYPE_DECIMALV2: { | 125 | 2 | 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 | 2 | 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 | 56.9k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 56.9k | } |
_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.25k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 1.25k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 1.25k | 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.25k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 1.25k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 365 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 365 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 365 | 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 | 365 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 365 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 53 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 53 | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 53 | 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 | 53 | } | 136 | | | 137 | 0 | return nullptr; | 138 | 53 | } |
_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.4k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 37.4k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 37.4k | switch (type) { | 121 | 224 | case TYPE_BOOLEAN: { | 122 | 224 | 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 | 37.4k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 37.4k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 117 | 48.7k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 118 | 48.7k | using Creator = PredicateFunctionCreator<Traits>; | 119 | | | 120 | 48.7k | switch (type) { | 121 | 234 | case TYPE_BOOLEAN: { | 122 | 234 | 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 | 48.7k | } | 136 | | | 137 | 0 | return nullptr; | 138 | 48.7k | } |
|
139 | | |
140 | | template <class Traits> |
141 | 141 | typename Traits::BasePtr create_bitmap_predicate_function(PrimitiveType type) { |
142 | 141 | using Creator = PredicateFunctionCreator<Traits>; |
143 | | |
144 | 141 | 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 | 132 | case TYPE_BIGINT: |
152 | 132 | 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 | 141 | } |
157 | | |
158 | 0 | return nullptr; |
159 | 141 | } |
160 | | |
161 | 37.5k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
162 | 37.5k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
163 | 37.5k | } |
164 | | |
165 | | template <size_t N = 0> |
166 | 59.4k | inline auto create_set(PrimitiveType type, bool null_aware) { |
167 | 59.4k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
168 | 59.4k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 57.2k | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 57.2k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 57.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.25k | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 1.25k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 1.25k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 365 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 365 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 365 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 166 | 53 | inline auto create_set(PrimitiveType type, bool null_aware) { | 167 | 53 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 168 | 53 | } |
_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.34k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
171 | 2.34k | if (size == 0) { |
172 | 12 | return create_set<0>(type, null_aware); |
173 | 2.33k | } else if (size == 1) { |
174 | 479 | return create_set<1>(type, null_aware); |
175 | 1.85k | } else if (size == 2) { |
176 | 1.25k | return create_set<2>(type, null_aware); |
177 | 1.25k | } else if (size == 3) { |
178 | 345 | return create_set<3>(type, null_aware); |
179 | 345 | } else if (size == 4) { |
180 | 51 | 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.34k | } |
193 | | |
194 | 512 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
195 | 512 | return new StringValueSet(null_aware); |
196 | 512 | } |
197 | | |
198 | 512 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
199 | 512 | return create_string_value_set(null_aware); |
200 | 512 | } |
201 | | |
202 | 48.7k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
203 | 48.7k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
204 | 48.7k | } |
205 | | |
206 | 141 | inline auto create_bitmap_filter(PrimitiveType type) { |
207 | 141 | return create_bitmap_predicate_function<BitmapFilterTraits>(type); |
208 | 141 | } |
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 | 471 | const TabletColumn* column, bool) { |
245 | | // currently only support like predicate |
246 | 471 | if constexpr (PT == TYPE_CHAR) { |
247 | 9 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, |
248 | 9 | column->name(), filter->_fn_ctx, |
249 | 9 | filter->_string_param); |
250 | 462 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { |
251 | 462 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, |
252 | 462 | column->name(), filter->_fn_ctx, |
253 | 462 | filter->_string_param); |
254 | 462 | } |
255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); |
256 | 471 | } 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 | 9 | const TabletColumn* column, bool) { | 245 | | // currently only support like predicate | 246 | 9 | if constexpr (PT == TYPE_CHAR) { | 247 | 9 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 248 | 9 | column->name(), filter->_fn_ctx, | 249 | 9 | 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 | 9 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 421 | 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 | 421 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | 421 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | 421 | column->name(), filter->_fn_ctx, | 253 | 421 | filter->_string_param); | 254 | 421 | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 421 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 244 | 41 | 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 | 41 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 251 | 41 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 252 | 41 | column->name(), filter->_fn_ctx, | 253 | 41 | filter->_string_param); | 254 | 41 | } | 255 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 256 | 41 | } |
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 | 474 | bool null_aware = false) { |
263 | 474 | switch (type) { |
264 | 0 | #define M(NAME) \ |
265 | 473 | case FieldType::OLAP_FIELD_##NAME: { \ |
266 | 473 | return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \ |
267 | 473 | } |
268 | 473 | 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 | 474 | } |
279 | 474 | } |
280 | | |
281 | | } // namespace doris |