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 | 36.9k | static BasePtr get_function(bool null_aware) { |
39 | 36.9k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
40 | 36.9k | return new MinMaxNumFunc< |
41 | 36.9k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( |
42 | 36.9k | null_aware); |
43 | 36.9k | } _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 | 9 | static BasePtr get_function(bool null_aware) { | 39 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 9 | return new MinMaxNumFunc< | 41 | 9 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 9 | null_aware); | 43 | 9 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 453 | static BasePtr get_function(bool null_aware) { | 39 | 453 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 453 | return new MinMaxNumFunc< | 41 | 453 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 453 | null_aware); | 43 | 453 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 354 | static BasePtr get_function(bool null_aware) { | 39 | 354 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 354 | return new MinMaxNumFunc< | 41 | 354 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 354 | null_aware); | 43 | 354 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 14.5k | static BasePtr get_function(bool null_aware) { | 39 | 14.5k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 14.5k | return new MinMaxNumFunc< | 41 | 14.5k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 14.5k | null_aware); | 43 | 14.5k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 14.0k | static BasePtr get_function(bool null_aware) { | 39 | 14.0k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 14.0k | return new MinMaxNumFunc< | 41 | 14.0k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 14.0k | null_aware); | 43 | 14.0k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 170 | static BasePtr get_function(bool null_aware) { | 39 | 170 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 170 | return new MinMaxNumFunc< | 41 | 170 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 170 | null_aware); | 43 | 170 | } |
_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 | 59 | static BasePtr get_function(bool null_aware) { | 39 | 59 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 59 | return new MinMaxNumFunc< | 41 | 59 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 59 | null_aware); | 43 | 59 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 19 | static BasePtr get_function(bool null_aware) { | 39 | 19 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 19 | return new MinMaxNumFunc< | 41 | 19 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 19 | null_aware); | 43 | 19 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 9 | static BasePtr get_function(bool null_aware) { | 39 | 9 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 9 | return new MinMaxNumFunc< | 41 | 9 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 9 | null_aware); | 43 | 9 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 901 | static BasePtr get_function(bool null_aware) { | 39 | 901 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 901 | return new MinMaxNumFunc< | 41 | 901 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 901 | null_aware); | 43 | 901 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 3.47k | static BasePtr get_function(bool null_aware) { | 39 | 3.47k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 3.47k | return new MinMaxNumFunc< | 41 | 3.47k | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 3.47k | null_aware); | 43 | 3.47k | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 7 | static BasePtr get_function(bool null_aware) { | 39 | 7 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 7 | return new MinMaxNumFunc< | 41 | 7 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 7 | null_aware); | 43 | 7 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 22 | static BasePtr get_function(bool null_aware) { | 39 | 22 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 22 | return new MinMaxNumFunc< | 41 | 22 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 22 | null_aware); | 43 | 22 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 493 | static BasePtr get_function(bool null_aware) { | 39 | 493 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 493 | return new MinMaxNumFunc< | 41 | 493 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 493 | null_aware); | 43 | 493 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 786 | static BasePtr get_function(bool null_aware) { | 39 | 786 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 786 | return new MinMaxNumFunc< | 41 | 786 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 786 | null_aware); | 43 | 786 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_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 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 783 | static BasePtr get_function(bool null_aware) { | 39 | 783 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 783 | return new MinMaxNumFunc< | 41 | 783 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 783 | null_aware); | 43 | 783 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 206 | static BasePtr get_function(bool null_aware) { | 39 | 206 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 206 | return new MinMaxNumFunc< | 41 | 206 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 206 | null_aware); | 43 | 206 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 31 | static BasePtr get_function(bool null_aware) { | 39 | 31 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 31 | return new MinMaxNumFunc< | 41 | 31 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 31 | null_aware); | 43 | 31 | } |
_ZN5doris20MinmaxFunctionTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_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_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 38 | 17 | static BasePtr get_function(bool null_aware) { | 39 | 17 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 40 | 17 | return new MinMaxNumFunc< | 41 | 17 | std::conditional_t<std::is_same_v<CppType, StringRef>, std::string, CppType>>( | 42 | 17 | null_aware); | 43 | 17 | } |
|
44 | | }; |
45 | | |
46 | | class HybridSetTraits { |
47 | | public: |
48 | | using BasePtr = HybridSetBase*; |
49 | | template <PrimitiveType type, size_t N> |
50 | 59.2k | static BasePtr get_function(bool null_aware) { |
51 | 59.2k | if constexpr (is_string_type(type)) { |
52 | 1.69k | 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 | 55.4k | } else { |
57 | 55.4k | using CppType = typename PrimitiveTypeTraits<type>::CppType; |
58 | 55.4k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); |
59 | 55.4k | } |
60 | 59.2k | } _ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 218 | 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 | 218 | } else { | 57 | 218 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 218 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 218 | } | 60 | 218 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 18 | 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 | 18 | } else { | 57 | 18 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 18 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 18 | } | 60 | 18 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 773 | 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 | 773 | } else { | 57 | 773 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 773 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 773 | } | 60 | 773 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 935 | 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 | 935 | } else { | 57 | 935 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 935 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 935 | } | 60 | 935 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 15.2k | 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 | 15.2k | } else { | 57 | 15.2k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 15.2k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 15.2k | } | 60 | 15.2k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 32.0k | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (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 | 32.0k | } else { | 57 | 32.0k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 32.0k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 32.0k | } | 60 | 32.0k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 205 | 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 | 205 | } else { | 57 | 205 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 205 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 205 | } | 60 | 205 | } |
_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 | 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 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 26 | 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 | 26 | } else { | 57 | 26 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 26 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 26 | } | 60 | 26 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 86 | 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 | 86 | } else { | 57 | 86 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 86 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 86 | } | 60 | 86 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 1.02k | 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.02k | } else { | 57 | 1.02k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 1.02k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 1.02k | } | 60 | 1.02k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3.51k | 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.51k | } else { | 57 | 3.51k | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 3.51k | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 3.51k | } | 60 | 3.51k | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 13 | 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 | 13 | } else { | 57 | 13 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 13 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 13 | } | 60 | 13 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 99 | static BasePtr get_function(bool null_aware) { | 51 | 99 | if constexpr (is_string_type(type)) { | 52 | 99 | 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 | 99 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 881 | static BasePtr get_function(bool null_aware) { | 51 | 881 | if constexpr (is_string_type(type)) { | 52 | 881 | 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 | 881 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 715 | static BasePtr get_function(bool null_aware) { | 51 | 715 | if constexpr (is_string_type(type)) { | 52 | 715 | 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 | 715 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 50 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | | } else if constexpr (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 | 50 | } else { | 57 | 50 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 50 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 50 | } | 60 | 50 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 785 | 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 | 785 | } else { | 57 | 785 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 785 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 785 | } | 60 | 785 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 90 | 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 | 90 | } else { | 57 | 90 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 90 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 90 | } | 60 | 90 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 74 | 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 | 74 | } else { | 57 | 74 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 74 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 74 | } | 60 | 74 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 24 | 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 | 24 | } else { | 57 | 24 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 24 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 24 | } | 60 | 24 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 18 | 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 | 18 | } else { | 57 | 18 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 58 | 18 | return new HybridSet<type, DynamicContainer<CppType>>(null_aware); | 59 | 18 | } | 60 | 18 | } |
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 | 787 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 787 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 787 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 787 | 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 | 787 | } |
_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 | 50 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 50 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 50 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 50 | 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 | 50 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE26ELm2EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 41 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 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 | 175 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 175 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 175 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 175 | 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 | 175 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 151 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 151 | } else if constexpr (N >= 1 && N <= FIXED_CONTAINER_MAX_SIZE) { | 54 | 151 | using CppType = typename PrimitiveTypeTraits<type>::CppType; | 55 | 151 | 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 | 151 | } |
_ZN5doris15HybridSetTraits12get_functionILNS_13PrimitiveTypeE7ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 50 | 3 | static BasePtr get_function(bool null_aware) { | 51 | | if constexpr (is_string_type(type)) { | 52 | | return new StringSet<>(null_aware); | 53 | 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 | 35.1k | static BasePtr get_function(bool null_aware) { |
68 | 35.1k | return new BloomFilterFunc<type>(null_aware); |
69 | 35.1k | } _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 227 | static BasePtr get_function(bool null_aware) { | 68 | 227 | return new BloomFilterFunc<type>(null_aware); | 69 | 227 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 24 | static BasePtr get_function(bool null_aware) { | 68 | 24 | return new BloomFilterFunc<type>(null_aware); | 69 | 24 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 557 | static BasePtr get_function(bool null_aware) { | 68 | 557 | return new BloomFilterFunc<type>(null_aware); | 69 | 557 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 362 | static BasePtr get_function(bool null_aware) { | 68 | 362 | return new BloomFilterFunc<type>(null_aware); | 69 | 362 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 11.0k | static BasePtr get_function(bool null_aware) { | 68 | 11.0k | return new BloomFilterFunc<type>(null_aware); | 69 | 11.0k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 18.1k | static BasePtr get_function(bool null_aware) { | 68 | 18.1k | return new BloomFilterFunc<type>(null_aware); | 69 | 18.1k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 145 | static BasePtr get_function(bool null_aware) { | 68 | 145 | return new BloomFilterFunc<type>(null_aware); | 69 | 145 | } |
_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 | } |
Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 78 | static BasePtr get_function(bool null_aware) { | 68 | 78 | return new BloomFilterFunc<type>(null_aware); | 69 | 78 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 1.02k | static BasePtr get_function(bool null_aware) { | 68 | 1.02k | return new BloomFilterFunc<type>(null_aware); | 69 | 1.02k | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 967 | static BasePtr get_function(bool null_aware) { | 68 | 967 | return new BloomFilterFunc<type>(null_aware); | 69 | 967 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 8 | static BasePtr get_function(bool null_aware) { | 68 | 8 | return new BloomFilterFunc<type>(null_aware); | 69 | 8 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 10 | static BasePtr get_function(bool null_aware) { | 68 | 10 | return new BloomFilterFunc<type>(null_aware); | 69 | 10 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 497 | static BasePtr get_function(bool null_aware) { | 68 | 497 | return new BloomFilterFunc<type>(null_aware); | 69 | 497 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 724 | static BasePtr get_function(bool null_aware) { | 68 | 724 | return new BloomFilterFunc<type>(null_aware); | 69 | 724 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 10 | static BasePtr get_function(bool null_aware) { | 68 | 10 | return new BloomFilterFunc<type>(null_aware); | 69 | 10 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 774 | static BasePtr get_function(bool null_aware) { | 68 | 774 | return new BloomFilterFunc<type>(null_aware); | 69 | 774 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 142 | static BasePtr get_function(bool null_aware) { | 68 | 142 | return new BloomFilterFunc<type>(null_aware); | 69 | 142 | } |
_ZN5doris17BloomFilterTraits12get_functionILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 67 | 66 | static BasePtr get_function(bool null_aware) { | 68 | 66 | return new BloomFilterFunc<type>(null_aware); | 69 | 66 | } |
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 | 243 | static BasePtr get_function(bool null_aware) { |
77 | 243 | return new BitmapFilterFunc<type>(null_aware); |
78 | 243 | } 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 | 234 | static BasePtr get_function(bool null_aware) { | 77 | 234 | return new BitmapFilterFunc<type>(null_aware); | 78 | 234 | } |
|
79 | | }; |
80 | | |
81 | | template <class Traits> |
82 | | class PredicateFunctionCreator { |
83 | | public: |
84 | | template <PrimitiveType type, size_t N = 0> |
85 | 131k | static typename Traits::BasePtr create(bool null_aware) { |
86 | 131k | return Traits::template get_function<type, N>(null_aware); |
87 | 131k | } _ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 218 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 218 | return Traits::template get_function<type, N>(null_aware); | 87 | 218 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 18 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 18 | return Traits::template get_function<type, N>(null_aware); | 87 | 18 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 774 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 774 | return Traits::template get_function<type, N>(null_aware); | 87 | 774 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 935 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 935 | return Traits::template get_function<type, N>(null_aware); | 87 | 935 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 15.2k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 15.2k | return Traits::template get_function<type, N>(null_aware); | 87 | 15.2k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 32.0k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 32.0k | return Traits::template get_function<type, N>(null_aware); | 87 | 32.0k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 205 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 205 | return Traits::template get_function<type, N>(null_aware); | 87 | 205 | } |
_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 | 16 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 16 | return Traits::template get_function<type, N>(null_aware); | 87 | 16 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 26 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 26 | return Traits::template get_function<type, N>(null_aware); | 87 | 26 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 86 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 86 | return Traits::template get_function<type, N>(null_aware); | 87 | 86 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 1.02k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.02k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.02k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 3.51k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3.51k | return Traits::template get_function<type, N>(null_aware); | 87 | 3.51k | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_13HybridSetBaseEb 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_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 99 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 99 | return Traits::template get_function<type, N>(null_aware); | 87 | 99 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 882 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 882 | return Traits::template get_function<type, N>(null_aware); | 87 | 882 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 715 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 715 | return Traits::template get_function<type, N>(null_aware); | 87 | 715 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 50 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 50 | return Traits::template get_function<type, N>(null_aware); | 87 | 50 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 785 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 785 | return Traits::template get_function<type, N>(null_aware); | 87 | 785 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 90 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 90 | return Traits::template get_function<type, N>(null_aware); | 87 | 90 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 74 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 74 | return Traits::template get_function<type, N>(null_aware); | 87 | 74 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 24 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 24 | return Traits::template get_function<type, N>(null_aware); | 87 | 24 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE37ELm0EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 18 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 18 | return Traits::template get_function<type, N>(null_aware); | 87 | 18 | } |
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 | 787 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 787 | return Traits::template get_function<type, N>(null_aware); | 87 | 787 | } |
_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 | 50 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 50 | return Traits::template get_function<type, N>(null_aware); | 87 | 50 | } |
_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 | 175 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 175 | return Traits::template get_function<type, N>(null_aware); | 87 | 175 | } |
_ZN5doris24PredicateFunctionCreatorINS_15HybridSetTraitsEE6createILNS_13PrimitiveTypeE6ELm3EEEPNS_13HybridSetBaseEb Line | Count | Source | 85 | 151 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 151 | return Traits::template get_function<type, N>(null_aware); | 87 | 151 | } |
_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 | 9 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 9 | return Traits::template get_function<type, N>(null_aware); | 87 | 9 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 453 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 453 | return Traits::template get_function<type, N>(null_aware); | 87 | 453 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 354 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 354 | return Traits::template get_function<type, N>(null_aware); | 87 | 354 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 14.5k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 14.5k | return Traits::template get_function<type, N>(null_aware); | 87 | 14.5k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 14.0k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 14.0k | return Traits::template get_function<type, N>(null_aware); | 87 | 14.0k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 170 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 170 | return Traits::template get_function<type, N>(null_aware); | 87 | 170 | } |
_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 | 59 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 59 | return Traits::template get_function<type, N>(null_aware); | 87 | 59 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 19 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 19 | return Traits::template get_function<type, N>(null_aware); | 87 | 19 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_14MinMaxFuncBaseEb 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_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 901 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 901 | return Traits::template get_function<type, N>(null_aware); | 87 | 901 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 3.47k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 3.47k | return Traits::template get_function<type, N>(null_aware); | 87 | 3.47k | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 7 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 7 | return Traits::template get_function<type, N>(null_aware); | 87 | 7 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 22 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 22 | return Traits::template get_function<type, N>(null_aware); | 87 | 22 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 493 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 493 | return Traits::template get_function<type, N>(null_aware); | 87 | 493 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 786 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 786 | return Traits::template get_function<type, N>(null_aware); | 87 | 786 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_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_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 783 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 783 | return Traits::template get_function<type, N>(null_aware); | 87 | 783 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 206 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 206 | return Traits::template get_function<type, N>(null_aware); | 87 | 206 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 31 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 31 | return Traits::template get_function<type, N>(null_aware); | 87 | 31 | } |
_ZN5doris24PredicateFunctionCreatorINS_20MinmaxFunctionTraitsEE6createILNS_13PrimitiveTypeE36ELm0EEEPNS_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_13PrimitiveTypeE37ELm0EEEPNS_14MinMaxFuncBaseEb Line | Count | Source | 85 | 17 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 17 | return Traits::template get_function<type, N>(null_aware); | 87 | 17 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE2ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE20ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 24 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 24 | return Traits::template get_function<type, N>(null_aware); | 87 | 24 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE3ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 558 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 558 | return Traits::template get_function<type, N>(null_aware); | 87 | 558 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE4ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 363 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 363 | return Traits::template get_function<type, N>(null_aware); | 87 | 363 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE5ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 11.0k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 11.0k | return Traits::template get_function<type, N>(null_aware); | 87 | 11.0k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE6ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 18.1k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 18.1k | return Traits::template get_function<type, N>(null_aware); | 87 | 18.1k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE7ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 145 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 145 | return Traits::template get_function<type, N>(null_aware); | 87 | 145 | } |
_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 | } |
Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE9ELm0EEEPNS_19BloomFilterFuncBaseEb Unexecuted instantiation: _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE11ELm0EEEPNS_19BloomFilterFuncBaseEb _ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE12ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE25ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 1.02k | static typename Traits::BasePtr create(bool null_aware) { | 86 | 1.02k | return Traits::template get_function<type, N>(null_aware); | 87 | 1.02k | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE26ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 967 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 967 | return Traits::template get_function<type, N>(null_aware); | 87 | 967 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE42ELm0EEEPNS_19BloomFilterFuncBaseEb 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_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE15ELm0EEEPNS_19BloomFilterFuncBaseEb 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 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE10ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 497 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 497 | return Traits::template get_function<type, N>(null_aware); | 87 | 497 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE23ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 724 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 724 | return Traits::template get_function<type, N>(null_aware); | 87 | 724 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE28ELm0EEEPNS_19BloomFilterFuncBaseEb 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 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE29ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 774 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 774 | return Traits::template get_function<type, N>(null_aware); | 87 | 774 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE30ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 142 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 142 | return Traits::template get_function<type, N>(null_aware); | 87 | 142 | } |
_ZN5doris24PredicateFunctionCreatorINS_17BloomFilterTraitsEE6createILNS_13PrimitiveTypeE35ELm0EEEPNS_19BloomFilterFuncBaseEb Line | Count | Source | 85 | 66 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 66 | return Traits::template get_function<type, N>(null_aware); | 87 | 66 | } |
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 | 234 | static typename Traits::BasePtr create(bool null_aware) { | 86 | 234 | return Traits::template get_function<type, N>(null_aware); | 87 | 234 | } |
|
88 | | }; |
89 | | |
90 | | #define APPLY_FOR_PRIMTYPE(M) \ |
91 | 1.80k | M(TYPE_TINYINT) \ |
92 | 1.80k | M(TYPE_SMALLINT) \ |
93 | 42.3k | M(TYPE_INT) \ |
94 | 64.6k | M(TYPE_BIGINT) \ |
95 | 64.6k | M(TYPE_LARGEINT) \ |
96 | 871 | M(TYPE_FLOAT) \ |
97 | 871 | M(TYPE_DOUBLE) \ |
98 | 85 | M(TYPE_DATE) \ |
99 | 183 | M(TYPE_DATETIME) \ |
100 | 3.00k | M(TYPE_DATEV2) \ |
101 | 7.99k | M(TYPE_DATETIMEV2) \ |
102 | 7.99k | M(TYPE_TIMESTAMPTZ) \ |
103 | 148 | M(TYPE_CHAR) \ |
104 | 2.14k | M(TYPE_VARCHAR) \ |
105 | 2.27k | M(TYPE_STRING) \ |
106 | 2.27k | M(TYPE_DECIMAL32) \ |
107 | 2.35k | M(TYPE_DECIMAL64) \ |
108 | 2.35k | M(TYPE_DECIMAL128I) \ |
109 | 448 | M(TYPE_DECIMAL256) \ |
110 | 179 | M(TYPE_IPV4) \ |
111 | 64 | M(TYPE_IPV6) |
112 | | |
113 | | template <class Traits, size_t N = 0> |
114 | 131k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { |
115 | 131k | using Creator = PredicateFunctionCreator<Traits>; |
116 | | |
117 | 131k | switch (type) { |
118 | 674 | case TYPE_BOOLEAN: { |
119 | 674 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); |
120 | 0 | } |
121 | 52 | case TYPE_DECIMALV2: { |
122 | 52 | return Creator::template create<TYPE_DECIMALV2, N>(null_aware); |
123 | 0 | } |
124 | 0 | #define M(NAME) \ |
125 | 130k | case NAME: { \ |
126 | 130k | return Creator::template create<NAME, N>(null_aware); \ |
127 | 130k | } |
128 | 130k | 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 | 131k | } |
133 | | |
134 | 0 | return nullptr; |
135 | 131k | } _ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 57.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 57.1k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 57.1k | switch (type) { | 118 | 218 | case TYPE_BOOLEAN: { | 119 | 218 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 18 | case TYPE_DECIMALV2: { | 122 | 18 | 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 | 18 | 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 | 57.1k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 57.1k | } |
_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.18k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 1.18k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 1.18k | 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.18k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 1.18k | } |
_ZN5doris25create_predicate_functionINS_15HybridSetTraitsELm3EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 364 | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 364 | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 364 | 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 | 364 | } | 133 | | | 134 | 0 | return nullptr; | 135 | 364 | } |
_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 | 36.9k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 36.9k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 36.9k | switch (type) { | 118 | 226 | case TYPE_BOOLEAN: { | 119 | 226 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 9 | case TYPE_DECIMALV2: { | 122 | 9 | 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 | 9 | 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 | 36.9k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 36.9k | } |
_ZN5doris25create_predicate_functionINS_17BloomFilterTraitsELm0EEENT_7BasePtrENS_13PrimitiveTypeEb Line | Count | Source | 114 | 35.1k | typename Traits::BasePtr create_predicate_function(PrimitiveType type, bool null_aware) { | 115 | 35.1k | using Creator = PredicateFunctionCreator<Traits>; | 116 | | | 117 | 35.1k | switch (type) { | 118 | 227 | case TYPE_BOOLEAN: { | 119 | 227 | return Creator::template create<TYPE_BOOLEAN, N>(null_aware); | 120 | 0 | } | 121 | 24 | case TYPE_DECIMALV2: { | 122 | 24 | 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 | 24 | 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 | 35.1k | } | 133 | | | 134 | 0 | return nullptr; | 135 | 35.1k | } |
|
136 | | |
137 | | template <class Traits> |
138 | 243 | typename Traits::BasePtr create_bitmap_predicate_function(PrimitiveType type) { |
139 | 243 | using Creator = PredicateFunctionCreator<Traits>; |
140 | | |
141 | 243 | 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 | 234 | case TYPE_BIGINT: |
149 | 234 | 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 | 243 | } |
154 | | |
155 | 0 | return nullptr; |
156 | 243 | } |
157 | | |
158 | 36.9k | inline auto create_minmax_filter(PrimitiveType type, bool null_aware) { |
159 | 36.9k | return create_predicate_function<MinmaxFunctionTraits>(type, null_aware); |
160 | 36.9k | } |
161 | | |
162 | | template <size_t N = 0> |
163 | 59.3k | inline auto create_set(PrimitiveType type, bool null_aware) { |
164 | 59.3k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); |
165 | 59.3k | } _ZN5doris10create_setILm0EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 57.1k | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 57.1k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 57.1k | } |
_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.18k | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 1.18k | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 1.18k | } |
_ZN5doris10create_setILm3EEEDaNS_13PrimitiveTypeEb Line | Count | Source | 163 | 364 | inline auto create_set(PrimitiveType type, bool null_aware) { | 164 | 364 | return create_predicate_function<HybridSetTraits, N>(type, null_aware); | 165 | 364 | } |
_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.28k | inline auto create_set(PrimitiveType type, size_t size, bool null_aware) { |
168 | 2.28k | 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.79k | } else if (size == 2) { |
173 | 1.18k | return create_set<2>(type, null_aware); |
174 | 1.18k | } else if (size == 3) { |
175 | 344 | return create_set<3>(type, null_aware); |
176 | 344 | } 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.28k | } |
190 | | |
191 | 512 | inline HybridSetBase* create_string_value_set(bool null_aware) { |
192 | 512 | return new StringValueSet(null_aware); |
193 | 512 | } |
194 | | |
195 | 512 | inline HybridSetBase* create_string_value_set(size_t size, bool null_aware) { |
196 | 512 | return create_string_value_set(null_aware); |
197 | 512 | } |
198 | | |
199 | 35.1k | inline auto create_bloom_filter(PrimitiveType type, bool null_aware) { |
200 | 35.1k | return create_predicate_function<BloomFilterTraits>(type, null_aware); |
201 | 35.1k | } |
202 | | |
203 | 243 | inline auto create_bitmap_filter(PrimitiveType type) { |
204 | 243 | return create_bitmap_predicate_function<BitmapFilterTraits>(type); |
205 | 243 | } |
206 | | |
207 | | template <PrimitiveType PT> |
208 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
209 | | uint32_t column_id, const std::shared_ptr<BloomFilterFuncBase>& filter, const TabletColumn*, |
210 | | bool null_aware) { |
211 | | std::shared_ptr<BloomFilterFuncBase> filter_olap; |
212 | | filter_olap.reset(create_bloom_filter(PT, null_aware)); |
213 | | filter_olap->light_copy(filter.get()); |
214 | | // create a new filter to match the input filter and PT. For example, filter may be varchar, but PT is char |
215 | | return BloomFilterColumnPredicate<PT>::create_shared(column_id, filter_olap); |
216 | | } |
217 | | |
218 | | template <PrimitiveType PT> |
219 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
220 | | uint32_t column_id, const std::shared_ptr<BitmapFilterFuncBase>& filter, |
221 | | const TabletColumn*, bool) { |
222 | | if constexpr (PT == TYPE_TINYINT || PT == TYPE_SMALLINT || PT == TYPE_INT || |
223 | | PT == TYPE_BIGINT) { |
224 | | return BitmapFilterColumnPredicate<PT>::create_shared(column_id, filter); |
225 | | } else { |
226 | | throw Exception(ErrorCode::INTERNAL_ERROR, "bitmap filter do not support type {}", PT); |
227 | | } |
228 | | } |
229 | | |
230 | | template <PrimitiveType PT> |
231 | | std::shared_ptr<const ColumnPredicate> create_olap_column_predicate( |
232 | | uint32_t column_id, const std::shared_ptr<HybridSetBase>& filter, |
233 | | const TabletColumn* column, bool) { |
234 | | return create_in_list_predicate<PT, PredicateType::IN_LIST>(column_id, filter, |
235 | | column->length()); |
236 | | } |
237 | | |
238 | | template <PrimitiveType PT> |
239 | | std::shared_ptr<ColumnPredicate> create_olap_column_predicate( |
240 | | uint32_t column_id, const std::shared_ptr<FunctionFilter>& filter, |
241 | 337 | const TabletColumn* column, bool) { |
242 | | // currently only support like predicate |
243 | 337 | if constexpr (PT == TYPE_CHAR) { |
244 | 17 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, |
245 | 17 | column->name(), filter->_fn_ctx, |
246 | 17 | filter->_string_param); |
247 | 320 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { |
248 | 320 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, |
249 | 320 | column->name(), filter->_fn_ctx, |
250 | 320 | filter->_string_param); |
251 | 320 | } |
252 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); |
253 | 337 | } Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE3EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE4EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE5EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE6EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE7EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE8EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE9EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE11EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE12EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE25EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE26EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Unexecuted instantiation: _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE42EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb _ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE15EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 241 | 17 | const TabletColumn* column, bool) { | 242 | | // currently only support like predicate | 243 | 17 | if constexpr (PT == TYPE_CHAR) { | 244 | 17 | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 245 | 17 | column->name(), filter->_fn_ctx, | 246 | 17 | filter->_string_param); | 247 | | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 248 | | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 249 | | column->name(), filter->_fn_ctx, | 250 | | filter->_string_param); | 251 | | } | 252 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 253 | 17 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE10EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 241 | 268 | const TabletColumn* column, bool) { | 242 | | // currently only support like predicate | 243 | | if constexpr (PT == TYPE_CHAR) { | 244 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 245 | | column->name(), filter->_fn_ctx, | 246 | | filter->_string_param); | 247 | 268 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 248 | 268 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 249 | 268 | column->name(), filter->_fn_ctx, | 250 | 268 | filter->_string_param); | 251 | 268 | } | 252 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 253 | 268 | } |
_ZN5doris28create_olap_column_predicateILNS_13PrimitiveTypeE23EEESt10shared_ptrINS_15ColumnPredicateEEjRKS2_INS_14FunctionFilterEEPKNS_12TabletColumnEb Line | Count | Source | 241 | 52 | const TabletColumn* column, bool) { | 242 | | // currently only support like predicate | 243 | | if constexpr (PT == TYPE_CHAR) { | 244 | | return LikeColumnPredicate<TYPE_CHAR>::create_shared(filter->_opposite, column_id, | 245 | | column->name(), filter->_fn_ctx, | 246 | | filter->_string_param); | 247 | 52 | } else if constexpr (PT == TYPE_VARCHAR || PT == TYPE_STRING) { | 248 | 52 | return LikeColumnPredicate<TYPE_STRING>::create_shared(filter->_opposite, column_id, | 249 | 52 | column->name(), filter->_fn_ctx, | 250 | 52 | filter->_string_param); | 251 | 52 | } | 252 | 0 | throw Exception(ErrorCode::INTERNAL_ERROR, "function filter do not support type {}", PT); | 253 | 52 | } |
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 |
254 | | |
255 | | template <typename T> |
256 | | std::shared_ptr<ColumnPredicate> create_column_predicate(uint32_t column_id, |
257 | | const std::shared_ptr<T>& filter, |
258 | | FieldType type, const TabletColumn* column, |
259 | 338 | bool null_aware = false) { |
260 | 338 | switch (type) { |
261 | 0 | #define M(NAME) \ |
262 | 338 | case FieldType::OLAP_FIELD_##NAME: { \ |
263 | 338 | return create_olap_column_predicate<NAME>(column_id, filter, column, null_aware); \ |
264 | 338 | } |
265 | 338 | APPLY_FOR_PRIMTYPE(M) |
266 | 0 | #undef M |
267 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL: { |
268 | 0 | return create_olap_column_predicate<TYPE_DECIMALV2>(column_id, filter, column, null_aware); |
269 | 0 | } |
270 | 0 | case FieldType::OLAP_FIELD_TYPE_BOOL: { |
271 | 0 | return create_olap_column_predicate<TYPE_BOOLEAN>(column_id, filter, column, null_aware); |
272 | 0 | } |
273 | 0 | default: |
274 | 0 | return nullptr; |
275 | 338 | } |
276 | 338 | } |
277 | | |
278 | | } // namespace doris |