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 | 39.5k | static BasePtr get_function(bool null_aware) { |
39 | 39.5k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
40 | 39.5k | return new MinMaxNumFunc< |
41 | 39.5k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
42 | 39.5k | null_aware); |
43 | 39.5k | } _ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 226 | static BasePtr get_function(bool null_aware) { | 39 | 226 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 226 | return new MinMaxNumFunc< | 41 | 226 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 226 | null_aware); | 43 | 226 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 35 | static BasePtr get_function(bool null_aware) { | 39 | 35 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 35 | return new MinMaxNumFunc< | 41 | 35 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 35 | null_aware); | 43 | 35 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 684 | static BasePtr get_function(bool null_aware) { | 39 | 684 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 684 | return new MinMaxNumFunc< | 41 | 684 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 684 | null_aware); | 43 | 684 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 409 | static BasePtr get_function(bool null_aware) { | 39 | 409 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 409 | return new MinMaxNumFunc< | 41 | 409 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 409 | null_aware); | 43 | 409 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 9.85k | static BasePtr get_function(bool null_aware) { | 39 | 9.85k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 9.85k | return new MinMaxNumFunc< | 41 | 9.85k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 9.85k | null_aware); | 43 | 9.85k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 23.2k | static BasePtr get_function(bool null_aware) { | 39 | 23.2k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 23.2k | return new MinMaxNumFunc< | 41 | 23.2k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 23.2k | null_aware); | 43 | 23.2k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 107 | static BasePtr get_function(bool null_aware) { | 39 | 107 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 107 | return new MinMaxNumFunc< | 41 | 107 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 107 | null_aware); | 43 | 107 | } |
_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 | 13 | static BasePtr get_function(bool null_aware) { | 39 | 13 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 13 | return new MinMaxNumFunc< | 41 | 13 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 13 | null_aware); | 43 | 13 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 52 | static BasePtr get_function(bool null_aware) { | 39 | 52 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 52 | return new MinMaxNumFunc< | 41 | 52 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 52 | null_aware); | 43 | 52 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 23 | static BasePtr get_function(bool null_aware) { | 39 | 23 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 23 | return new MinMaxNumFunc< | 41 | 23 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 23 | null_aware); | 43 | 23 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 1.00k | static BasePtr get_function(bool null_aware) { | 39 | 1.00k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 1.00k | return new MinMaxNumFunc< | 41 | 1.00k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 1.00k | null_aware); | 43 | 1.00k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 937 | static BasePtr get_function(bool null_aware) { | 39 | 937 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 937 | return new MinMaxNumFunc< | 41 | 937 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 937 | null_aware); | 43 | 937 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 14 | static BasePtr get_function(bool null_aware) { | 39 | 14 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 14 | return new MinMaxNumFunc< | 41 | 14 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 14 | null_aware); | 43 | 14 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 61 | static BasePtr get_function(bool null_aware) { | 39 | 61 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 61 | return new MinMaxNumFunc< | 41 | 61 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 61 | null_aware); | 43 | 61 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 624 | static BasePtr get_function(bool null_aware) { | 39 | 624 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 624 | return new MinMaxNumFunc< | 41 | 624 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 624 | null_aware); | 43 | 624 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 717 | static BasePtr get_function(bool null_aware) { | 39 | 717 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 717 | return new MinMaxNumFunc< | 41 | 717 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 717 | null_aware); | 43 | 717 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 107 | static BasePtr get_function(bool null_aware) { | 39 | 107 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 107 | return new MinMaxNumFunc< | 41 | 107 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 107 | null_aware); | 43 | 107 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 831 | static BasePtr get_function(bool null_aware) { | 39 | 831 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 831 | return new MinMaxNumFunc< | 41 | 831 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 831 | null_aware); | 43 | 831 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 162 | static BasePtr get_function(bool null_aware) { | 39 | 162 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 162 | return new MinMaxNumFunc< | 41 | 162 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 162 | null_aware); | 43 | 162 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 78 | static BasePtr get_function(bool null_aware) { | 39 | 78 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 78 | return new MinMaxNumFunc< | 41 | 78 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 78 | null_aware); | 43 | 78 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 32 | static BasePtr get_function(bool null_aware) { | 39 | 32 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 32 | return new MinMaxNumFunc< | 41 | 32 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 32 | null_aware); | 43 | 32 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 15 | static BasePtr get_function(bool null_aware) { | 39 | 15 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 15 | return new MinMaxNumFunc< | 41 | 15 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 15 | null_aware); | 43 | 15 | } |
|
44 | | }; |
45 | | |
46 | | class HybridSetTraits { |
47 | | public: |
48 | | using BasePtr = HybridSetBase*; |
49 | | template <PrimitiveType type, size_t N> |
50 | 64.6k | static BasePtr get_function(bool null_aware) { |
51 | 64.6k | if constexpr (is_string_type(type)) { |
52 | 1.40k | return new StringSet<>(null_aware); |
53 | 2.13k | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
54 | 2.13k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
55 | 2.13k | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); |
56 | 61.1k | } else { |
57 | 61.1k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 61.1k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
59 | 61.1k | } |
60 | 64.6k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 227 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 227 | } else { | 57 | 227 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 227 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 227 | } | 60 | 227 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 70 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 70 | } else { | 57 | 70 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 70 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 70 | } | 60 | 70 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.16k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 1.16k | } else { | 57 | 1.16k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1.16k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 1.16k | } | 60 | 1.16k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 976 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 976 | } else { | 57 | 976 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 976 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 976 | } | 60 | 976 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 17.6k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 17.6k | } else { | 57 | 17.6k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 17.6k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 17.6k | } | 60 | 17.6k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 34.4k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 34.4k | } else { | 57 | 34.4k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 34.4k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 34.4k | } | 60 | 34.4k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 197 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 197 | } else { | 57 | 197 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 197 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 197 | } | 60 | 197 | } |
_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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 291 | } else { | 57 | 291 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 291 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 291 | } | 60 | 291 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 12 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 12 | } else { | 57 | 12 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 12 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 12 | } | 60 | 12 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 57 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 57 | } else { | 57 | 57 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 57 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 57 | } | 60 | 57 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 61 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 61 | } else { | 57 | 61 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 61 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 61 | } | 60 | 61 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.24k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 1.24k | } else { | 57 | 1.24k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1.24k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 1.24k | } | 60 | 1.24k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3.55k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 3.55k | } else { | 57 | 3.55k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3.55k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 3.55k | } | 60 | 3.55k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 14 | } else { | 57 | 14 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 14 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 14 | } | 60 | 14 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 100 | static BasePtr get_function(bool null_aware) { | 51 | 100 | if constexpr (is_string_type(type)) { | 52 | 100 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 100 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 415 | static BasePtr get_function(bool null_aware) { | 51 | 415 | if constexpr (is_string_type(type)) { | 52 | 415 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 415 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 892 | static BasePtr get_function(bool null_aware) { | 51 | 892 | if constexpr (is_string_type(type)) { | 52 | 892 | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 892 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 132 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 132 | } else { | 57 | 132 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 132 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 132 | } | 60 | 132 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 502 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 502 | } else { | 57 | 502 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 502 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 502 | } | 60 | 502 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 387 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 387 | } else { | 57 | 387 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 387 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 387 | } | 60 | 387 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 103 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 103 | } else { | 57 | 103 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 103 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 103 | } | 60 | 103 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 33 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 33 | } else { | 57 | 33 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 33 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 33 | } | 60 | 33 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 16 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | 16 | } else { | 57 | 16 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 16 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 16 | } | 60 | 16 | } |
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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 457 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 457 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 457 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 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 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 794 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 794 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 794 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 794 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 794 | } |
_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 | 255 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 255 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 255 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 33 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 33 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 33 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 33 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 33 | } |
_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 | 41 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 41 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 41 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
_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 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 8 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
_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 | 8 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 8 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 8 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 8 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 179 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 179 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 179 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 179 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 179 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 149 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 149 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 149 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 149 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 149 | } |
_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 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 5 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 5 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 5 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 5 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 1 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 27 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 27 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 27 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 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 | 3 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 3 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 3 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 3 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 6 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 6 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 6 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 6 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 9 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 9 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 9 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 2 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 4 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 4 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 4 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 4 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 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 (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 1 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 1 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 1 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 11 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 11 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 11 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_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 | 2 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 2 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 2 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 2 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm7EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm8EEEPNS_13HybridSetBaseEb _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm8EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 10 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 10 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 10 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 10 | return new HybridSet<type, FixedContainer<CppType, N>>(null_aware); | 56 | | } else { | 57 | | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | | } | 60 | 10 | } |
Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE8ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE9ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm8EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm8EEEPNS_13HybridSetBaseEb |
61 | | }; |
62 | | |
63 | | class BloomFilterTraits { |
64 | | public: |
65 | | using BasePtr = BloomFilterFuncBase*; |
66 | | template <PrimitiveType type, size_t N> |
67 | 41.5k | static BasePtr get_function(bool null_aware) { |
68 | 41.5k | return new BloomFilterFunc<type>(null_aware); |
69 | 41.5k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 216 | static BasePtr get_function(bool null_aware) { | 68 | 216 | return new BloomFilterFunc<type>(null_aware); | 69 | 216 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 70 | static BasePtr get_function(bool null_aware) { | 68 | 70 | return new BloomFilterFunc<type>(null_aware); | 69 | 70 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 683 | static BasePtr get_function(bool null_aware) { | 68 | 683 | return new BloomFilterFunc<type>(null_aware); | 69 | 683 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 358 | static BasePtr get_function(bool null_aware) { | 68 | 358 | return new BloomFilterFunc<type>(null_aware); | 69 | 358 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 10.0k | static BasePtr get_function(bool null_aware) { | 68 | 10.0k | return new BloomFilterFunc<type>(null_aware); | 69 | 10.0k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 24.9k | static BasePtr get_function(bool null_aware) { | 68 | 24.9k | return new BloomFilterFunc<type>(null_aware); | 69 | 24.9k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 128 | static BasePtr get_function(bool null_aware) { | 68 | 128 | return new BloomFilterFunc<type>(null_aware); | 69 | 128 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 288 | static BasePtr get_function(bool null_aware) { | 68 | 288 | return new BloomFilterFunc<type>(null_aware); | 69 | 288 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 15 | static BasePtr get_function(bool null_aware) { | 68 | 15 | return new BloomFilterFunc<type>(null_aware); | 69 | 15 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 36 | static BasePtr get_function(bool null_aware) { | 68 | 36 | return new BloomFilterFunc<type>(null_aware); | 69 | 36 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.12k | static BasePtr get_function(bool null_aware) { | 68 | 1.12k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.12k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.06k | static BasePtr get_function(bool null_aware) { | 68 | 1.06k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.06k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 16 | static BasePtr get_function(bool null_aware) { | 68 | 16 | return new BloomFilterFunc<type>(null_aware); | 69 | 16 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 165 | static BasePtr get_function(bool null_aware) { | 68 | 165 | return new BloomFilterFunc<type>(null_aware); | 69 | 165 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 717 | static BasePtr get_function(bool null_aware) { | 68 | 717 | return new BloomFilterFunc<type>(null_aware); | 69 | 717 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 629 | static BasePtr get_function(bool null_aware) { | 68 | 629 | return new BloomFilterFunc<type>(null_aware); | 69 | 629 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 135 | static BasePtr get_function(bool null_aware) { | 68 | 135 | return new BloomFilterFunc<type>(null_aware); | 69 | 135 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 851 | static BasePtr get_function(bool null_aware) { | 68 | 851 | return new BloomFilterFunc<type>(null_aware); | 69 | 851 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 40 | static BasePtr get_function(bool null_aware) { | 68 | 40 | return new BloomFilterFunc<type>(null_aware); | 69 | 40 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 48 | static BasePtr get_function(bool null_aware) { | 68 | 48 | return new BloomFilterFunc<type>(null_aware); | 69 | 48 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb |
70 | | }; |
71 | | |
72 | | class BitmapFilterTraits { |
73 | | public: |
74 | | using BasePtr = BitmapFilterFuncBase*; |
75 | | template <PrimitiveType type, size_t N> |
76 | 219 | static BasePtr get_function(bool null_aware) { |
77 | 219 | return new BitmapFilterFunc<type>(null_aware); |
78 | 219 | } Unexecuted instantiation: _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_20BitmapFilterFuncBaseEb Unexecuted instantiation: _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_20BitmapFilterFuncBaseEb _ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 76 | 9 | static BasePtr get_function(bool null_aware) { | 77 | 9 | return new BitmapFilterFunc<type>(null_aware); | 78 | 9 | } |
_ZN5doris18BitmapFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 76 | 210 | static BasePtr get_function(bool null_aware) { | 77 | 210 | return new BitmapFilterFunc<type>(null_aware); | 78 | 210 | } |
|
79 | | }; |
80 | | |
81 | | template <class Traits> |
82 | | class PredicateFunctionCreator { |
83 | | public: |
84 | | template <PrimitiveType type, size_t N = 0> |
85 | 146k | static typename Traits::BasePtr create(bool null_aware) { |
86 | 146k | return Traits::template get_function<type, N>(null_aware); |
87 | 146k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 227 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 227 | return Traits::template get_function<type, N>(null_aware); | 87 | 227 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 70 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 70 | return Traits::template get_function<type, N>(null_aware); | 87 | 70 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1.16k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.16k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.16k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 975 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 975 | return Traits::template get_function<type, N>(null_aware); | 87 | 975 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 17.6k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 17.6k | return Traits::template get_function<type, N>(null_aware); | 87 | 17.6k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 34.4k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 34.4k | return Traits::template get_function<type, N>(null_aware); | 87 | 34.4k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 194 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 194 | return Traits::template get_function<type, N>(null_aware); | 87 | 194 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 291 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 291 | return Traits::template get_function<type, N>(null_aware); | 87 | 291 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 12 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 12 | return Traits::template get_function<type, N>(null_aware); | 87 | 12 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 57 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 57 | return Traits::template get_function<type, N>(null_aware); | 87 | 57 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 61 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 61 | return Traits::template get_function<type, N>(null_aware); | 87 | 61 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1.24k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.24k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.24k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3.55k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3.55k | return Traits::template get_function<type, N>(null_aware); | 87 | 3.55k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 14 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 14 | return Traits::template get_function<type, N>(null_aware); | 87 | 14 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 100 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 100 | return Traits::template get_function<type, N>(null_aware); | 87 | 100 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 414 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 414 | return Traits::template get_function<type, N>(null_aware); | 87 | 414 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 892 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 892 | return Traits::template get_function<type, N>(null_aware); | 87 | 892 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 132 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 132 | return Traits::template get_function<type, N>(null_aware); | 87 | 132 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 502 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 502 | return Traits::template get_function<type, N>(null_aware); | 87 | 502 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 384 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 384 | return Traits::template get_function<type, N>(null_aware); | 87 | 384 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 103 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 103 | return Traits::template get_function<type, N>(null_aware); | 87 | 103 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 33 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 33 | return Traits::template get_function<type, N>(null_aware); | 87 | 33 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 16 | return Traits::template get_function<type, N>(null_aware); | 87 | 16 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm1EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 6 | return Traits::template get_function<type, N>(null_aware); | 87 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 457 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 457 | return Traits::template get_function<type, N>(null_aware); | 87 | 457 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 5 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 8 | return Traits::template get_function<type, N>(null_aware); | 87 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm1EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 5 | return Traits::template get_function<type, N>(null_aware); | 87 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 794 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 794 | return Traits::template get_function<type, N>(null_aware); | 87 | 794 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 255 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 255 | return Traits::template get_function<type, N>(null_aware); | 87 | 255 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 33 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 33 | return Traits::template get_function<type, N>(null_aware); | 87 | 33 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 41 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 41 | return Traits::template get_function<type, N>(null_aware); | 87 | 41 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 5 | return Traits::template get_function<type, N>(null_aware); | 87 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 8 | return Traits::template get_function<type, N>(null_aware); | 87 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 5 | return Traits::template get_function<type, N>(null_aware); | 87 | 5 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm2EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 8 | return Traits::template get_function<type, N>(null_aware); | 87 | 8 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 8 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 8 | return Traits::template get_function<type, N>(null_aware); | 87 | 8 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm3EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 4 | return Traits::template get_function<type, N>(null_aware); | 87 | 4 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 5 | return Traits::template get_function<type, N>(null_aware); | 87 | 5 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 179 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 179 | return Traits::template get_function<type, N>(null_aware); | 87 | 179 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 149 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 149 | return Traits::template get_function<type, N>(null_aware); | 87 | 149 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 5 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 5 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 27 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 27 | return Traits::template get_function<type, N>(null_aware); | 87 | 27 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3 | return Traits::template get_function<type, N>(null_aware); | 87 | 3 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE8ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE9ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 2 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 6 | return Traits::template get_function<type, N>(null_aware); | 87 | 6 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 6 | return Traits::template get_function<type, N>(null_aware); | 87 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm4EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 6 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 6 | return Traits::template get_function<type, N>(null_aware); | 87 | 6 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm4EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm5EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 9 | return Traits::template get_function<type, N>(null_aware); | 87 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 4 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 2 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm5EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 1 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 4 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 4 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 4 | return Traits::template get_function<type, N>(null_aware); | 87 | 4 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm6EEEPNS_13HybridSetBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm6EEEPNS_13HybridSetBaseEb _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 11 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 11 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 2 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 2 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 10 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 10 | return Traits::template get_function<type, N>(null_aware); | 87 | 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 | 85 | 226 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 226 | return Traits::template get_function<type, N>(null_aware); | 87 | 226 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 35 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 35 | return Traits::template get_function<type, N>(null_aware); | 87 | 35 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 684 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 684 | return Traits::template get_function<type, N>(null_aware); | 87 | 684 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 406 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 406 | return Traits::template get_function<type, N>(null_aware); | 87 | 406 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 9.86k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 9.86k | return Traits::template get_function<type, N>(null_aware); | 87 | 9.86k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 23.3k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 23.3k | return Traits::template get_function<type, N>(null_aware); | 87 | 23.3k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 107 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 107 | return Traits::template get_function<type, N>(null_aware); | 87 | 107 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 289 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 289 | return Traits::template get_function<type, N>(null_aware); | 87 | 289 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 13 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 13 | return Traits::template get_function<type, N>(null_aware); | 87 | 13 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 52 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 52 | return Traits::template get_function<type, N>(null_aware); | 87 | 52 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 23 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 23 | return Traits::template get_function<type, N>(null_aware); | 87 | 23 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 1.00k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.00k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.00k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 937 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 937 | return Traits::template get_function<type, N>(null_aware); | 87 | 937 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 14 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 14 | return Traits::template get_function<type, N>(null_aware); | 87 | 14 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 61 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 61 | return Traits::template get_function<type, N>(null_aware); | 87 | 61 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 624 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 624 | return Traits::template get_function<type, N>(null_aware); | 87 | 624 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 717 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 717 | return Traits::template get_function<type, N>(null_aware); | 87 | 717 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 107 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 107 | return Traits::template get_function<type, N>(null_aware); | 87 | 107 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 831 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 831 | return Traits::template get_function<type, N>(null_aware); | 87 | 831 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 162 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 162 | return Traits::template get_function<type, N>(null_aware); | 87 | 162 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 78 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 78 | return Traits::template get_function<type, N>(null_aware); | 87 | 78 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 32 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 32 | return Traits::template get_function<type, N>(null_aware); | 87 | 32 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 15 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 15 | return Traits::template get_function<type, N>(null_aware); | 87 | 15 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 216 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 216 | return Traits::template get_function<type, N>(null_aware); | 87 | 216 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 70 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 70 | return Traits::template get_function<type, N>(null_aware); | 87 | 70 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 683 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 683 | return Traits::template get_function<type, N>(null_aware); | 87 | 683 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 358 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 358 | return Traits::template get_function<type, N>(null_aware); | 87 | 358 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 10.0k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 10.0k | return Traits::template get_function<type, N>(null_aware); | 87 | 10.0k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 24.9k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 24.9k | return Traits::template get_function<type, N>(null_aware); | 87 | 24.9k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 128 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 128 | return Traits::template get_function<type, N>(null_aware); | 87 | 128 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE8ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 288 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 288 | return Traits::template get_function<type, N>(null_aware); | 87 | 288 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 15 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 15 | return Traits::template get_function<type, N>(null_aware); | 87 | 15 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 36 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 36 | return Traits::template get_function<type, N>(null_aware); | 87 | 36 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 1.12k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.12k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.12k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 1.06k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.06k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.06k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 16 | return Traits::template get_function<type, N>(null_aware); | 87 | 16 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 165 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 165 | return Traits::template get_function<type, N>(null_aware); | 87 | 165 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 717 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 717 | return Traits::template get_function<type, N>(null_aware); | 87 | 717 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 629 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 629 | return Traits::template get_function<type, N>(null_aware); | 87 | 629 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 135 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 135 | return Traits::template get_function<type, N>(null_aware); | 87 | 135 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 851 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 851 | return Traits::template get_function<type, N>(null_aware); | 87 | 851 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 40 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 40 | return Traits::template get_function<type, N>(null_aware); | 87 | 40 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 48 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 48 | return Traits::template get_function<type, N>(null_aware); | 87 | 48 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_20BitmapFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_20BitmapFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 85 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 9 | return Traits::template get_function<type, N>(null_aware); | 87 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_18BitmapFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_20BitmapFilterFuncBaseEb Line | Count | Source | 85 | 210 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 210 | return Traits::template get_function<type, N>(null_aware); | 87 | 210 | } |
|
88 | | }; |
89 | | |
90 | | #define APPLY_FOR_PRIMTYPE(M) \ |
91 | 2.55k | M(TYPE_TINYINT) \ |
92 | 2.55k | M(TYPE_SMALLINT) \ |
93 | 39.0k | M(TYPE_INT) \ |
94 | 83.1k | M(TYPE_BIGINT) \ |
95 | 83.1k | M(TYPE_LARGEINT) \ |
96 | 871 | M(TYPE_FLOAT) \ |
97 | 871 | M(TYPE_DOUBLE) \ |
98 | 119 | M(TYPE_DATE) \ |
99 | 130 | M(TYPE_DATETIME) \ |
100 | 3.40k | M(TYPE_DATEV2) \ |
101 | 5.60k | M(TYPE_DATETIMEV2) \ |
102 | 5.60k | M(TYPE_TIMESTAMPTZ) \ |
103 | 326 | M(TYPE_CHAR) \ |
104 | 2.19k | M(TYPE_VARCHAR) \ |
105 | 2.30k | M(TYPE_STRING) \ |
106 | 2.30k | M(TYPE_DECIMAL32) \ |
107 | 2.19k | M(TYPE_DECIMAL64) \ |
108 | 2.19k | M(TYPE_DECIMAL128I) \ |
109 | 598 | M(TYPE_DECIMAL256) \ |
110 | 237 | M(TYPE_IPV4) \ |
111 | 82 | M(TYPE_IPV6) |
112 | | |
113 | | template <class Traits, size_t N = 0> |
114 | 145k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
115 | 145k | using Creator = PredicateFunctionCreator<Traits>; |
116 | | |
117 | 145k | switch (type) { |
118 | 672 | case TYPE_BOOLEAN: { |
119 | 672 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
120 | 0 | } |
121 | 176 | case TYPE_DECIMALV2: { |
122 | 176 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
123 | 0 | } |
124 | 0 | #define M(NAME) \ |
125 | 144k | case NAME: { \ |
126 | 144k | return Creator::template create<NAME, N>(null_aware); \ |
127 | 144k | } |
128 | 144k | APPLY_FOR_PRIMTYPE(M) |
129 | 0 | #undef M |
130 | 0 | default: |
131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); |
132 | 145k | } |
133 | | |
134 | 0 | return nullptr; |
135 | 145k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 62.5k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 62.5k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 62.5k | switch (type) { | 118 | 227 | case TYPE_BOOLEAN: { | 119 | 227 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 70 | case TYPE_DECIMALV2: { | 122 | 70 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 70 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 62.5k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 62.5k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm1EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 481 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 481 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 481 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 481 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 481 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm2EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 1.17k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 1.17k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 1.17k | switch (type) { | 118 | 3 | case TYPE_BOOLEAN: { | 119 | 3 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 1.17k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 1.17k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 366 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 366 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 366 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 1 | case TYPE_DECIMALV2: { | 122 | 1 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 1 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 366 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 366 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm4EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 51 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 51 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 51 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 51 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 51 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm5EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 20 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 20 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 20 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 20 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 20 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm6EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 9 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 9 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 9 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 9 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 9 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm7EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 15 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 15 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 15 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 15 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 15 | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm8EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 10 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 10 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 10 | switch (type) { | 118 | 0 | case TYPE_BOOLEAN: { | 119 | 0 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 0 | case TYPE_DECIMALV2: { | 122 | 0 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 0 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 10 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 10 | } |
_ZN5doris25create_predicate_functionINS_20MinmaxFunctionTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 39.5k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 39.5k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 39.5k | switch (type) { | 118 | 226 | case TYPE_BOOLEAN: { | 119 | 226 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 35 | case TYPE_DECIMALV2: { | 122 | 35 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 35 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 39.5k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 39.5k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 41.5k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 41.5k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 41.5k | switch (type) { | 118 | 216 | case TYPE_BOOLEAN: { | 119 | 216 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 70 | case TYPE_DECIMALV2: { | 122 | 70 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); | 123 | 0 | } | 124 | 0 | #define M(NAME) \ | 125 | 0 | case NAME: { \ | 126 | 0 | return Creator::template create<NAME, N>(null_aware); \ | 127 | 0 | } | 128 | 70 | APPLY_FOR_PRIMTYPE(M) | 129 | 0 | #undef M | 130 | 0 | default: | 131 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "predicate with type " + type_to_string(type)); | 132 | 41.5k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 41.5k | } |
|
136 | | |
137 | | template <class Traits> |
138 | 219 | typename Traits::BasePtr create_bitmap_predicate_function(PrimitiveType type) { |
139 | 219 | using Creator = PredicateFunctionCreator<Traits>; |
140 | | |
141 | 219 | switch (type) { |
142 | 0 | case TYPE_TINYINT: |
143 | 0 | return Creator::template create<TYPE_TINYINT>(false); |
144 | 0 | case TYPE_SMALLINT: |
145 | 0 | return Creator::template create<TYPE_SMALLINT>(false); |
146 | 9 | case TYPE_INT: |
147 | 9 | return Creator::template create<TYPE_INT>(false); |
148 | 210 | case TYPE_BIGINT: |
149 | 210 | return Creator::template create<TYPE_BIGINT>(false); |
150 | 0 | default: |
151 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, |
152 | 0 | "bitmap predicate with type " + type_to_string(type)); |
153 | 219 | } |
154 | | |
155 | 0 | return nullptr; |
156 | 219 | } |
157 | | |
158 | 39.6k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
159 | 39.6k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
160 | 39.6k | } |
161 | | |
162 | | template <size_t N = 0> |
163 | 64.7k | inline auto create_set(PrimitiveType type, bool null_aware) { |
164 | 64.7k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
165 | 64.7k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 62.6k | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 62.6k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 62.6k | } |
_ZN5doris10create_setILm1EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 481 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 481 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 481 | } |
_ZN5doris10create_setILm2EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 1.17k | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 1.17k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 1.17k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 366 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 366 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 366 | } |
_ZN5doris10create_setILm4EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 51 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 51 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 51 | } |
_ZN5doris10create_setILm5EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 20 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 20 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 20 | } |
_ZN5doris10create_setILm6EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 9 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 9 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 9 | } |
_ZN5doris10create_setILm7EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 15 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 15 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 15 | } |
_ZN5doris10create_setILm8EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 10 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 10 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 10 | } |
|
166 | | |
167 | 2.27k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
168 | 2.27k | if (size == 0) { |
169 | 12 | return create_set<0>(type, null_aware); |
170 | 2.26k | } else if (size == 1) { |
171 | 479 | return create_set<1>(type, null_aware); |
172 | 1.78k | } else if (size == 2) { |
173 | 1.17k | return create_set<2>(type, null_aware); |
174 | 1.17k | } else if (size == 3) { |
175 | 346 | return create_set<3>(type, null_aware); |
176 | 346 | } else if (size == 4) { |
177 | 49 | return create_set<4>(type, null_aware); |
178 | 211 | } else if (size == 5) { |
179 | 18 | return create_set<5>(type, null_aware); |
180 | 193 | } else if (size == 6) { |
181 | 7 | return create_set<6>(type, null_aware); |
182 | 186 | } else if (size == 7) { |
183 | 13 | return create_set<7>(type, null_aware); |
184 | 173 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
185 | 7 | return create_set<FIXED_CONTAINER_MAX_SIZE>(type, null_aware); |
186 | 166 | } else { |
187 | 166 | return create_set(type, null_aware); |
188 | 166 | } |
189 | 2.27k | } |
190 | | |
191 | | template <size_t N = 0> |
192 | 516 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
193 | 516 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { |
194 | 504 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); |
195 | 504 | } else { |
196 | 12 | return new StringValueSet(null_aware); |
197 | 12 | } |
198 | 516 | } _ZN5doris23create_string_value_setILm1EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 21 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 21 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 21 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 21 | } |
_ZN5doris23create_string_value_setILm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 395 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 395 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 395 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 395 | } |
_ZN5doris23create_string_value_setILm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 42 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 42 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 42 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 42 | } |
_ZN5doris23create_string_value_setILm4EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 29 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 29 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 29 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 29 | } |
_ZN5doris23create_string_value_setILm5EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 2 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 2 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 2 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 2 | } |
_ZN5doris23create_string_value_setILm6EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 5 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 5 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 5 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 5 | } |
_ZN5doris23create_string_value_setILm7EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 9 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 9 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 9 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 9 | } |
_ZN5doris23create_string_value_setILm8EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 1 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | 1 | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | 1 | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | | } else { | 196 | | return new StringValueSet(null_aware); | 197 | | } | 198 | 1 | } |
_ZN5doris23create_string_value_setILm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 192 | 12 | inline HybridSetBase* create_string_value_set(bool null_aware) { | 193 | | if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 194 | | return new StringValueSet<FixedContainer<StringRef, N>>(null_aware); | 195 | 12 | } else { | 196 | 12 | return new StringValueSet(null_aware); | 197 | 12 | } | 198 | 12 | } |
|
199 | | |
200 | 516 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
201 | 516 | if (size == 1) { |
202 | 21 | return create_string_value_set<1>(null_aware); |
203 | 495 | } else if (size == 2) { |
204 | 395 | return create_string_value_set<2>(null_aware); |
205 | 395 | } else if (size == 3) { |
206 | 42 | return create_string_value_set<3>(null_aware); |
207 | 58 | } else if (size == 4) { |
208 | 29 | return create_string_value_set<4>(null_aware); |
209 | 29 | } else if (size == 5) { |
210 | 2 | return create_string_value_set<5>(null_aware); |
211 | 27 | } else if (size == 6) { |
212 | 5 | return create_string_value_set<6>(null_aware); |
213 | 22 | } else if (size == 7) { |
214 | 9 | return create_string_value_set<7>(null_aware); |
215 | 13 | } else if (size == FIXED_CONTAINER_MAX_SIZE) { |
216 | 1 | return create_string_value_set<FIXED_CONTAINER_MAX_SIZE>(null_aware); |
217 | 12 | } else { |
218 | 12 | return create_string_value_set(null_aware); |
219 | 12 | } |
220 | 516 | } |
221 | | |
222 | 41.5k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
223 | 41.5k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
224 | 41.5k | } |
225 | | |
226 | 220 | inline auto create_bitmap_filter(PrimitiveType type) { |
227 | 220 | return create_bitmap_predicate_function<BitmapFilterTraits>(type); |
228 | 220 | } |
229 | | |
230 | | template <PrimitiveType PT> |
231 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
232 | | uint32_t column_id, const std::shared_ptr<BloomFilterFuncBase>& filter, const TabletColumn*, |
233 | | bool null_aware) { |
234 | | std::shared_ptr<BloomFilterFuncBase> filter_olap; |
235 | | filter_olap.reset(create_bloom_filter(PT, null_aware)); |
236 | | filter_olap->light_copy(filter.get()); |
237 | | // create a new filter to match the input filter and PT. For example, filter may be varchar, but PT is char |
238 | | return BloomFilterColumnPredicate<PT>::create_shared(column_id, filter_olap); |
239 | | } |
240 | | |
241 | | template <PrimitiveType PT> |
242 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
243 | | uint32_t column_id, const std::shared_ptr<BitmapFilterFuncBase>& filter, |
244 | | const TabletColumn*, bool) { |
245 | | if constexpr (PT == TYPE_TINYINT || PT == TYPE_SMALLINT || PT == TYPE_INT || |
246 | | PT == TYPE_BIGINT) { |
247 | | return BitmapFilterColumnPredicate<PT>::create_shared(column_id, filter); |
248 | | } else { |
249 | | throw Exception(ErrorCode::INTERNAL_ERROR, "bitmap filter do not support type {}", PT); |
250 | | } |
251 | | } |
252 | | |
253 | | template <PrimitiveType PT> |
254 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
255 | | uint32_t column_id, const std::shared_ptr<HybridSetBase>& filter, |
256 | | const TabletColumn* column, bool) { |
257 | | return create_in_list_predicate<PT, PredicateType::IN_LIST>(column_id, filter, |
258 | | column->length()); |
259 | | } |
260 | | |
261 | | template <PrimitiveType PT> |
262 | | std::shared_ptr<ColumnPredicate> create_olap_column_predicate( |
263 | | uint32_t column_id, const std::shared_ptr<FunctionFilter>& filter, |
264 | 511 | const TabletColumn* column, bool) { |
265 | | // currently only support like predicate |
266 | 511 | if constexpr (PT == TYPE_CHAR) { |
267 | 0 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, |
268 | 0 | column->name(), filter->_fn_ctx, |
269 | 0 | filter->_string_param); |
270 | 511 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { |
271 | 511 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, |
272 | 511 | column->name(), filter->_fn_ctx, |
273 | 511 | filter->_string_param); |
274 | 511 | } |
275 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); |
276 | 511 | } 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 Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE15EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 264 | 440 | const TabletColumn* column, bool) { | 265 | | // currently only support like predicate | 266 | | if constexpr (PT == TYPE_CHAR) { | 267 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 268 | | column->name(), filter->_fn_ctx, | 269 | | filter->_string_param); | 270 | 440 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 271 | 440 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 272 | 440 | column->name(), filter->_fn_ctx, | 273 | 440 | filter->_string_param); | 274 | 440 | } | 275 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 276 | 440 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 264 | 71 | const TabletColumn* column, bool) { | 265 | | // currently only support like predicate | 266 | | if constexpr (PT == TYPE_CHAR) { | 267 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 268 | | column->name(), filter->_fn_ctx, | 269 | | filter->_string_param); | 270 | 71 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 271 | 71 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 272 | 71 | column->name(), filter->_fn_ctx, | 273 | 71 | filter->_string_param); | 274 | 71 | } | 275 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 276 | 71 | } |
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 |
277 | | |
278 | | template <typename T> |
279 | | std::shared_ptr<ColumnPredicate> create_column_predicate(uint32_t column_id, |
280 | | const std::shared_ptr<T>& filter, |
281 | | FieldType type, const TabletColumn* column, |
282 | 510 | bool null_aware = false) { |
283 | 510 | switch (type) { |
284 | 0 | #define M(NAME) \ |
285 | 511 | case FieldType::OLAP_FIELD_##NAME: { \ |
286 | 511 | return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \ |
287 | 511 | } |
288 | 511 | APPLY_FOR_PRIMTYPE(M) |
289 | 0 | #undef M |
290 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL: { |
291 | 0 | return create_olap_column_predicate<TYPE_DECIMALV2>(column_id, filter, column, null_aware); |
292 | 0 | } |
293 | 0 | case FieldType::OLAP_FIELD_TYPE_BOOL: { |
294 | 0 | return create_olap_column_predicate<TYPE_BOOLEAN>(column_id, filter, column, null_aware); |
295 | 0 | } |
296 | 0 | default: |
297 | 0 | return nullptr; |
298 | 510 | } |
299 | 510 | } |
300 | | |
301 | | } // namespace doris |