be/src/exprs/aggregate/helpers.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 | | // This file is copied from |
18 | | // https://github.com/ClickHouse/ClickHouse/blob/master/src/AggregateFunctions/Helpers.h |
19 | | // and modified by Doris |
20 | | |
21 | | #pragma once |
22 | | |
23 | | #include "core/call_on_type_index.h" |
24 | | #include "core/data_type/data_type.h" |
25 | | #include "core/data_type/define_primitive_type.h" |
26 | | #include "exec/common/template_helpers.hpp" |
27 | | #include "exprs/aggregate/aggregate_function.h" |
28 | | #include "exprs/aggregate/aggregate_function_null.h" |
29 | | #include "exprs/aggregate/aggregate_function_null_v2.h" |
30 | | |
31 | | /** If the serialized type is not the default type(string), |
32 | | * aggregation function need to override these functions: |
33 | | * 1. serialize_to_column |
34 | | * 2. streaming_agg_serialize_to_column |
35 | | * 3. deserialize_and_merge_vec |
36 | | * 4. deserialize_and_merge_vec_selected |
37 | | * 5. serialize_without_key_to_column |
38 | | * 6. deserialize_and_merge_from_column |
39 | | */ |
40 | | #define CHECK_AGG_FUNCTION_SERIALIZED_TYPE(FunctionTemplate) \ |
41 | 181k | do { \ |
42 | 181k | constexpr bool _is_new_serialized_type = \ |
43 | 181k | !std::is_same_v<decltype(&FunctionTemplate::get_serialized_type), \ |
44 | 181k | decltype(&IAggregateFunction::get_serialized_type)>; \ |
45 | 181k | if constexpr (_is_new_serialized_type) { \ |
46 | 116k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::serialize_to_column), \ |
47 | 116k | decltype(&IAggregateFunctionHelper< \ |
48 | 116k | FunctionTemplate>::serialize_to_column)>, \ |
49 | 116k | "need to override serialize_to_column"); \ |
50 | 116k | static_assert( \ |
51 | 116k | !std::is_same_v< \ |
52 | 116k | decltype(&FunctionTemplate::streaming_agg_serialize_to_column), \ |
53 | 116k | decltype(&IAggregateFunction::streaming_agg_serialize_to_column)>, \ |
54 | 116k | "need to override " \ |
55 | 116k | "streaming_agg_serialize_to_column"); \ |
56 | 116k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::deserialize_and_merge_vec), \ |
57 | 116k | decltype(&IAggregateFunctionHelper< \ |
58 | 116k | FunctionTemplate>::deserialize_and_merge_vec)>, \ |
59 | 116k | "need to override deserialize_and_merge_vec"); \ |
60 | 116k | static_assert( \ |
61 | 116k | !std::is_same_v< \ |
62 | 116k | decltype(&FunctionTemplate::deserialize_and_merge_vec_selected), \ |
63 | 116k | decltype(&IAggregateFunctionHelper< \ |
64 | 116k | FunctionTemplate>::deserialize_and_merge_vec_selected)>, \ |
65 | 116k | "need to override " \ |
66 | 116k | "deserialize_and_merge_vec_selected"); \ |
67 | 116k | static_assert( \ |
68 | 116k | !std::is_same_v<decltype(&FunctionTemplate::serialize_without_key_to_column), \ |
69 | 116k | decltype(&IAggregateFunctionHelper< \ |
70 | 116k | FunctionTemplate>::serialize_without_key_to_column)>, \ |
71 | 116k | "need to override serialize_without_key_to_column"); \ |
72 | 116k | static_assert( \ |
73 | 116k | !std::is_same_v< \ |
74 | 116k | decltype(&FunctionTemplate::deserialize_and_merge_from_column_range), \ |
75 | 116k | decltype(&IAggregateFunctionHelper< \ |
76 | 116k | FunctionTemplate>::deserialize_and_merge_from_column)>, \ |
77 | 116k | "need to override " \ |
78 | 116k | "deserialize_and_merge_from_column"); \ |
79 | 116k | } \ |
80 | 181k | } while (false) |
81 | | |
82 | | namespace doris { |
83 | | |
84 | | struct creator_without_type { |
85 | | template <bool multi_arguments, bool f, typename T> |
86 | | using NullableT = std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>, |
87 | | AggregateFunctionNullUnaryInline<T, f>>; |
88 | | |
89 | | template <bool multi_arguments, bool f, typename T> |
90 | | using NullableV2T = |
91 | | std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>, |
92 | | AggregateFunctionNullUnaryInlineV2<T, f>>; |
93 | | |
94 | | template <typename AggregateFunctionTemplate> |
95 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
96 | | const DataTypePtr& result_type, |
97 | | const bool result_is_nullable, |
98 | 7.35k | const AggregateFunctionAttr& attr) { |
99 | 7.35k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
100 | 7.35k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); |
101 | 7.35k | } _ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 2.58k | const AggregateFunctionAttr& attr) { | 99 | 2.58k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 2.58k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 2.58k | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 1.30k | const AggregateFunctionAttr& attr) { | 99 | 1.30k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 1.30k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 1.30k | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 446 | const AggregateFunctionAttr& attr) { | 99 | 446 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 446 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 446 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 1.37k | const AggregateFunctionAttr& attr) { | 99 | 1.37k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 1.37k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 1.37k | } |
_ZN5doris20creator_without_type7creatorINS_19WindowFunctionNTileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 10 | const AggregateFunctionAttr& attr) { | 99 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 10 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 10 | } |
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionRetentionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 438 | const AggregateFunctionAttr& attr) { | 99 | 438 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 438 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 438 | } |
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 569 | const AggregateFunctionAttr& attr) { | 99 | 569 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 569 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 569 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 600 | const AggregateFunctionAttr& attr) { | 99 | 600 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 600 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 600 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 7 | const AggregateFunctionAttr& attr) { | 99 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 7 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 7 | } |
_ZN5doris20creator_without_type7creatorINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 98 | 24 | const AggregateFunctionAttr& attr) { | 99 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 100 | 24 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 101 | 24 | } |
|
102 | | |
103 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
104 | | static AggregateFunctionPtr create(const DataTypes& argument_types_, |
105 | | const bool result_is_nullable, |
106 | 96.4k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. |
108 | 96.4k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { |
109 | 74.1k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
110 | 46.9k | return create_unary_arguments<AggregateFunctionTemplate>( |
111 | 46.9k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
112 | 46.9k | } else { |
113 | 27.1k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( |
114 | 27.1k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
115 | 27.1k | } |
116 | 74.1k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { |
117 | 7.62k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
118 | 6.53k | return create_multi_arguments<AggregateFunctionTemplate>( |
119 | 6.53k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
120 | 6.53k | } else { |
121 | 1.09k | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( |
122 | 1.09k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
123 | 1.09k | } |
124 | 14.6k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { |
125 | 14.6k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
126 | 8.33k | return create_varargs<AggregateFunctionTemplate>( |
127 | 8.33k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
128 | 8.33k | } else { |
129 | 6.34k | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( |
130 | 6.34k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
131 | 6.34k | } |
132 | | } else { |
133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, |
134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " |
135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " |
136 | | "NonNullableAggregateFunction)"); |
137 | | } |
138 | 0 | return nullptr; |
139 | 96.4k | } _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 894 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 894 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 894 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 894 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 894 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 894 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 123 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 123 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 123 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 123 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 123 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 123 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 30 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 30 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 30 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 30 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 30 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 30 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.24k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.24k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.24k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.24k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.24k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.24k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 18 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 18 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 18 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.17k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.17k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2.17k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2.17k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2.17k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.17k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 5 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 5 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 5 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 5 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 5 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 159 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 159 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 159 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 159 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 159 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 159 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3.78k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 3.78k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 3.78k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 3.78k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 3.78k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3.78k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 75 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 75 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 75 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 75 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 75 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 75 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8.48k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8.48k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 8.48k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 8.48k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 8.48k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8.48k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6.38k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 6.38k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 6.38k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 6.38k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 6.38k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6.38k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.19k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.19k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.19k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.19k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.19k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.19k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 64 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 64 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 64 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 64 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 64 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 64 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.30k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.30k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2.30k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2.30k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2.30k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.30k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 89 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 89 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 89 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 89 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 89 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 89 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 8 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 641 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 641 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 641 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 641 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 641 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 641 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 9 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 9 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 9 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 94 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 94 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 94 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 94 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 94 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 94 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 24 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 98 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 98 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 98 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 98 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 98 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 98 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 83 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 83 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 83 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 83 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 83 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 83 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 29 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 29 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 29 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 29 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 29 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 29 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.24k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.24k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.24k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.24k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.24k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.24k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 404 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 404 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 404 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 404 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 404 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 404 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 276 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 276 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 276 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 276 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 276 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 276 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE4ENS_30AggregateFunctionUniqExactDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE5ENS_30AggregateFunctionUniqExactDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 697 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 697 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 697 | } else { | 129 | 697 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 697 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 697 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 697 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 58 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 58 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 58 | } else { | 129 | 58 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 58 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 58 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 58 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE28ENS_30AggregateFunctionUniqExactDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE29ENS_30AggregateFunctionUniqExactDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 1 | } else { | 129 | 1 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 1 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 13 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 13 | } else { | 129 | 13 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 13 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 587 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 587 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 587 | } else { | 129 | 587 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 587 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 587 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 587 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 4 | } else { | 129 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 4 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE8ENS_30AggregateFunctionUniqExactDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE9ENS_30AggregateFunctionUniqExactDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE25ENS_30AggregateFunctionUniqExactDataILS3_25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 16 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 16 | } else { | 129 | 16 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 16 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 29 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 29 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 29 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 29 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 29 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 29 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 451 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 451 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 451 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 451 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 451 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 451 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 452 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 452 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 452 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 452 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 452 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 452 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 26 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 452 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 452 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 452 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 452 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 452 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 452 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 28 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 28 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.58k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.58k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 2.58k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 2.58k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 2.58k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.58k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.30k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.30k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.30k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.30k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.30k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.30k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 446 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 446 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 446 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 446 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 446 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 446 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 448 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 448 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 448 | } else { | 113 | 448 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 448 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 448 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 448 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 4 | } else { | 113 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 4 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 18 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 18 | } else { | 113 | 18 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 18 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 6 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 6 | } else { | 113 | 6 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 6 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 6 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 6 | } else { | 113 | 6 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 6 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_29GroupArrayStringIntersectDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 15 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 15 | } else { | 113 | 15 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 15 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 15 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 23 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 23 | } else { | 113 | 23 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 23 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 16 | } else { | 113 | 16 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 16 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 4 | } else { | 113 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 4 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 4 | } else { | 113 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 4 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2 | } else { | 113 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_25GroupArrayStringUnionDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 12 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 12 | } else { | 113 | 12 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 12 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.79k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2.79k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2.79k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2.79k | return create_varargs<AggregateFunctionTemplate>( | 127 | 2.79k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.79k | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.78k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1.78k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 1.78k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 1.78k | return create_varargs<AggregateFunctionTemplate>( | 127 | 1.78k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.78k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 1 | return create_varargs<AggregateFunctionTemplate>( | 127 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 910 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 910 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 910 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 910 | return create_varargs<AggregateFunctionTemplate>( | 127 | 910 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 910 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 382 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 382 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 382 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 382 | return create_varargs<AggregateFunctionTemplate>( | 127 | 382 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 382 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 916 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 916 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 916 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 916 | return create_varargs<AggregateFunctionTemplate>( | 127 | 916 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 916 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 25 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 25 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 25 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 25 | return create_varargs<AggregateFunctionTemplate>( | 127 | 25 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 25 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 921 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 921 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 921 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 921 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 921 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 921 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 981 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 981 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 981 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 981 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 981 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 981 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.20k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.20k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.20k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.20k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.20k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.20k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.47k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.47k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.47k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.47k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.47k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.47k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.37k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.37k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.37k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.37k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.37k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.37k | } |
_ZN5doris20creator_without_type6createINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 10 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 10 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 10 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.05k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.05k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.05k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.05k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.05k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.05k | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.09k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.09k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.09k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.09k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.09k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.09k | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.07k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.07k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 1.07k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 1.07k | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 1.07k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.07k | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 593 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 593 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 593 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 593 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 593 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 593 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 466 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 466 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 466 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 466 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 466 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 466 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 41 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 41 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 41 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 41 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 41 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 41 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 4 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 4 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 3 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 3 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 3 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 1 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 424 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 424 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 424 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 424 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 424 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 424 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 1 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 425 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 425 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 425 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 425 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 425 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 425 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 116 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 116 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 116 | } else { | 113 | 116 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 116 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 116 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 116 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 319 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 319 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 319 | } else { | 113 | 319 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 319 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 319 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 319 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 340 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 340 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 340 | } else { | 113 | 340 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 340 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 340 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 340 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10.3k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 10.3k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 10.3k | } else { | 113 | 10.3k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 10.3k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 10.3k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10.3k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2.99k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 2.99k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 2.99k | } else { | 113 | 2.99k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 2.99k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 2.99k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2.99k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 278 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 278 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 278 | } else { | 113 | 278 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 278 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 278 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 278 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 130 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 130 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 130 | } else { | 113 | 130 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 130 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 130 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 130 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 178 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 178 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 178 | } else { | 113 | 178 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 178 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 178 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 178 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 82 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 82 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 82 | } else { | 113 | 82 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 82 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 82 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 82 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 70 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 70 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 70 | } else { | 113 | 70 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 70 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 70 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 70 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.72k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 1.72k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 1.72k | } else { | 113 | 1.72k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 1.72k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 1.72k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.72k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 522 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 522 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 522 | } else { | 113 | 522 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 522 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 522 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 522 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 10 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 10 | } else { | 113 | 10 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 10 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 5.29k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 5.29k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 5.29k | } else { | 113 | 5.29k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 5.29k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 5.29k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 5.29k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3.45k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 3.45k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 3.45k | } else { | 113 | 3.45k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 3.45k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 3.45k | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3.45k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 726 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 726 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 726 | } else { | 113 | 726 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 726 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 726 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 726 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 8 | } else { | 113 | 8 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 8 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | 8 | } else { | 113 | 8 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | 8 | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 741 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 741 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 741 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 741 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 741 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 741 | } |
_ZN5doris20creator_without_type6createINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 37 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 37 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 37 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 37 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 37 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 37 | } |
_ZN5doris20creator_without_type6createINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 23 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 23 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 23 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
_ZN5doris20creator_without_type6createINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 22 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 22 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 22 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 22 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 22 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.62k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1.62k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 1.62k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 1.62k | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 1.62k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.62k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 412 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 412 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 412 | } else { | 121 | 412 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 412 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 412 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 412 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 8 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 8 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 14 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 14 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 14 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 14 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 14 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 28 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 28 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 28 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 28 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 28 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 28 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 42 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 42 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 42 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 42 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 42 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 42 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 11 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 11 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 11 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 11 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 4 | } else { | 121 | 4 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 4 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 6 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 6 | } else { | 121 | 6 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 6 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 45 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 45 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 45 | } else { | 121 | 45 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 45 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 45 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 45 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 13 | } else { | 121 | 13 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 13 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 4 | } else { | 121 | 4 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 4 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 13 | } else { | 121 | 13 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 13 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 6 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 6 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 6 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 623 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 623 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 623 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 623 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 623 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 623 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 438 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 438 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 438 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 438 | return create_varargs<AggregateFunctionTemplate>( | 127 | 438 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 438 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 3 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 3 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 3 | return create_varargs<AggregateFunctionTemplate>( | 127 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 11 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 11 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 11 | return create_varargs<AggregateFunctionTemplate>( | 127 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 11 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2 | return create_varargs<AggregateFunctionTemplate>( | 127 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2 | return create_varargs<AggregateFunctionTemplate>( | 127 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 10 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 10 | return create_varargs<AggregateFunctionTemplate>( | 127 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 425 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 425 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 425 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 425 | return create_varargs<AggregateFunctionTemplate>( | 127 | 425 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 425 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 11 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 11 | } else { | 129 | 11 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 11 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 11 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 14 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 14 | } else { | 129 | 14 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 14 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 14 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 14 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 9 | } else { | 129 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 9 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 13 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 13 | } else { | 129 | 13 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 13 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 442 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 442 | } else { | 129 | 442 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 442 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 442 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 442 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1.04k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 1.04k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 1.04k | } else { | 129 | 1.04k | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 1.04k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 1.04k | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1.04k | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 15 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 15 | } else { | 129 | 15 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 15 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 15 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 10 | } else { | 129 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 10 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 10 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 4 | } else { | 129 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 4 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 6 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 6 | } else { | 129 | 6 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 6 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 23 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 23 | } else { | 129 | 23 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 23 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 17 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 17 | } else { | 129 | 17 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 17 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 17 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 17 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 23 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 23 | } else { | 129 | 23 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 23 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 23 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 185 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 185 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 185 | } else { | 129 | 185 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 185 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 185 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 185 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 59 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 59 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 59 | } else { | 129 | 59 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 59 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 59 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 59 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 619 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 619 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 619 | } else { | 129 | 619 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 619 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 619 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 619 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 617 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 617 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 617 | } else { | 129 | 617 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 617 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 617 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 617 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 9 | } else { | 129 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 9 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 9 | } else { | 129 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 9 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 33 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 33 | } else { | 129 | 33 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 33 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 32 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 32 | } else { | 129 | 32 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 32 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 32 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 32 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 75 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 75 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 75 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 75 | return create_varargs<AggregateFunctionTemplate>( | 127 | 75 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 75 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 441 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 441 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 441 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 441 | return create_varargs<AggregateFunctionTemplate>( | 127 | 441 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 441 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 71 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 71 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 71 | } else { | 129 | 71 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 71 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 71 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 71 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 442 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 442 | } else { | 129 | 442 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 442 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 442 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 442 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 569 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 569 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 569 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 569 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 569 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 569 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 5 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 5 | } else { | 129 | 5 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 5 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 5 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 5 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 12 | } else { | 129 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 12 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 8 | } else { | 129 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 8 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 18 | } else { | 129 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 18 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 43 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 43 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 43 | } else { | 129 | 43 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 43 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 43 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 43 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 19 | } else { | 129 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 19 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 19 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 19 | } else { | 129 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 19 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 4 | } else { | 129 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 4 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 4 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 447 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 447 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 447 | } else { | 129 | 447 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 447 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 447 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 447 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 21 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 21 | } else { | 129 | 21 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 21 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 20 | } else { | 129 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 20 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 19 | } else { | 129 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 19 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 39 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 39 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 39 | } else { | 129 | 39 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 39 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 39 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 39 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 38 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 38 | } else { | 129 | 38 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 38 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 38 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 38 | } else { | 129 | 38 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 38 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | 2 | } else { | 129 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | 2 | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 3 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 3 | } else { | 121 | 3 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 3 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 3 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 1 | } else { | 121 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 1 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 444 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 444 | } else { | 121 | 444 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 444 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 444 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 444 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 21 | } else { | 121 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 21 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | 2 | } else { | 121 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | 2 | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 600 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 600 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 600 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 600 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 600 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 600 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 457 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 457 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 457 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 457 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 457 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 457 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 26 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 26 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 26 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 446 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 446 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 446 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 446 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 446 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 446 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 442 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 442 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 442 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 442 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 442 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 13 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 13 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 13 | } |
_ZN5doris20creator_without_type6createINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | 18 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | 18 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | 18 | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 7 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 7 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 7 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 7 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 7 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 8 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 8 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 7 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 7 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 7 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 7 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 7 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 24 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 2 | return create_varargs<AggregateFunctionTemplate>( | 127 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 110 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | 110 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | 110 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | 110 | return create_varargs<AggregateFunctionTemplate>( | 127 | 110 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 110 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 50 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 50 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 50 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 50 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 50 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 50 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 46 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 46 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 46 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 46 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 46 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 46 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 42 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 42 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 42 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 42 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 42 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 42 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 22 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 22 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 22 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 22 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 22 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 48 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 48 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 48 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 48 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 48 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 48 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 24 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 16 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 40 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 40 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 40 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 40 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 40 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 40 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 106 | 125 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 107 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 108 | 125 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 109 | 125 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 110 | 125 | return create_unary_arguments<AggregateFunctionTemplate>( | 111 | 125 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 112 | | } else { | 113 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 114 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 115 | | } | 116 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 117 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 118 | | return create_multi_arguments<AggregateFunctionTemplate>( | 119 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 120 | | } else { | 121 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 122 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 123 | | } | 124 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 125 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 126 | | return create_varargs<AggregateFunctionTemplate>( | 127 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 128 | | } else { | 129 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 130 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 131 | | } | 132 | | } else { | 133 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 134 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 135 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 136 | | "NonNullableAggregateFunction)"); | 137 | | } | 138 | 0 | return nullptr; | 139 | 125 | } |
|
140 | | |
141 | | // dispatch |
142 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
143 | | static AggregateFunctionPtr create_varargs(const DataTypes& argument_types_, |
144 | | const bool result_is_nullable, |
145 | 8.32k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
146 | 8.32k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
147 | 8.32k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
148 | 8.32k | if (have_nullable(argument_types_)) { |
149 | 7.06k | std::visit( |
150 | 7.06k | [&](auto multi_arguments, auto result_is_nullable) { |
151 | 7.06k | if (attr.enable_aggregate_function_null_v2) { |
152 | 2.09k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, |
153 | 2.09k | AggregateFunctionTemplate>( |
154 | 2.09k | result.release(), argument_types_, attr.is_window_function)); |
155 | 4.96k | } else { |
156 | 4.96k | result.reset(new NullableT<multi_arguments, result_is_nullable, |
157 | 4.96k | AggregateFunctionTemplate>( |
158 | 4.96k | result.release(), argument_types_, attr.is_window_function)); |
159 | 4.96k | } |
160 | 7.06k | }, Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Line | Count | Source | 150 | 1.80k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.80k | if (attr.enable_aggregate_function_null_v2) { | 152 | 45 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 45 | AggregateFunctionTemplate>( | 154 | 45 | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.76k | } else { | 156 | 1.76k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1.76k | AggregateFunctionTemplate>( | 158 | 1.76k | result.release(), argument_types_, attr.is_window_function)); | 159 | 1.76k | } | 160 | 1.80k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Line | Count | Source | 150 | 1.74k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.74k | if (attr.enable_aggregate_function_null_v2) { | 152 | 1.74k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1.74k | AggregateFunctionTemplate>( | 154 | 1.74k | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.74k | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 1.74k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Line | Count | Source | 150 | 1 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1 | if (attr.enable_aggregate_function_null_v2) { | 152 | 1 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1 | AggregateFunctionTemplate>( | 154 | 1 | result.release(), argument_types_, attr.is_window_function)); | 155 | 1 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 1 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Line | Count | Source | 150 | 424 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 424 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 411 | } else { | 156 | 411 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 411 | AggregateFunctionTemplate>( | 158 | 411 | result.release(), argument_types_, attr.is_window_function)); | 159 | 411 | } | 160 | 424 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Line | Count | Source | 150 | 440 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 440 | if (attr.enable_aggregate_function_null_v2) { | 152 | 28 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 28 | AggregateFunctionTemplate>( | 154 | 28 | result.release(), argument_types_, attr.is_window_function)); | 155 | 412 | } else { | 156 | 412 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 412 | AggregateFunctionTemplate>( | 158 | 412 | result.release(), argument_types_, attr.is_window_function)); | 159 | 412 | } | 160 | 440 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Line | Count | Source | 150 | 4 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 4 | if (attr.enable_aggregate_function_null_v2) { | 152 | 4 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 4 | AggregateFunctionTemplate>( | 154 | 4 | result.release(), argument_types_, attr.is_window_function)); | 155 | 4 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 4 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Line | Count | Source | 150 | 372 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 372 | if (attr.enable_aggregate_function_null_v2) { | 152 | 5 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 5 | AggregateFunctionTemplate>( | 154 | 5 | result.release(), argument_types_, attr.is_window_function)); | 155 | 367 | } else { | 156 | 367 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 367 | AggregateFunctionTemplate>( | 158 | 367 | result.release(), argument_types_, attr.is_window_function)); | 159 | 367 | } | 160 | 372 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESW_EEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESV_IbLb1EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESV_IbLb0EEEEDaSR_SS_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESW_EEDaSR_SS_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Line | Count | Source | 150 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 3 | if (attr.enable_aggregate_function_null_v2) { | 152 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 3 | AggregateFunctionTemplate>( | 154 | 3 | result.release(), argument_types_, attr.is_window_function)); | 155 | 3 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 3 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Line | Count | Source | 150 | 838 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 838 | if (attr.enable_aggregate_function_null_v2) { | 152 | 59 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 59 | AggregateFunctionTemplate>( | 154 | 59 | result.release(), argument_types_, attr.is_window_function)); | 155 | 779 | } else { | 156 | 779 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 779 | AggregateFunctionTemplate>( | 158 | 779 | result.release(), argument_types_, attr.is_window_function)); | 159 | 779 | } | 160 | 838 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Line | Count | Source | 150 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 13 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 13 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 13 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_EEDaSK_SL_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESO_IbLb1EEEEDaSK_SL_ Line | Count | Source | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESO_IbLb0EEEEDaSK_SL_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_EEDaSK_SL_ Line | Count | Source | 150 | 426 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 426 | if (attr.enable_aggregate_function_null_v2) { | 152 | 14 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 14 | AggregateFunctionTemplate>( | 154 | 14 | result.release(), argument_types_, attr.is_window_function)); | 155 | 412 | } else { | 156 | 412 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 412 | AggregateFunctionTemplate>( | 158 | 412 | result.release(), argument_types_, attr.is_window_function)); | 159 | 412 | } | 160 | 426 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 3 | if (attr.enable_aggregate_function_null_v2) { | 152 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 3 | AggregateFunctionTemplate>( | 154 | 3 | result.release(), argument_types_, attr.is_window_function)); | 155 | 3 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 3 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 11 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 11 | if (attr.enable_aggregate_function_null_v2) { | 152 | 11 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 11 | AggregateFunctionTemplate>( | 154 | 11 | result.release(), argument_types_, attr.is_window_function)); | 155 | 11 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 10 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 10 | if (attr.enable_aggregate_function_null_v2) { | 152 | 10 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 10 | AggregateFunctionTemplate>( | 154 | 10 | result.release(), argument_types_, attr.is_window_function)); | 155 | 10 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 10 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Line | Count | Source | 150 | 415 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 415 | if (attr.enable_aggregate_function_null_v2) { | 152 | 7 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 7 | AggregateFunctionTemplate>( | 154 | 7 | result.release(), argument_types_, attr.is_window_function)); | 155 | 408 | } else { | 156 | 408 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 408 | AggregateFunctionTemplate>( | 158 | 408 | result.release(), argument_types_, attr.is_window_function)); | 159 | 408 | } | 160 | 415 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_IbLb1EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_IbLb0EEEEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESU_EEDaSP_SQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Line | Count | Source | 150 | 50 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 50 | if (attr.enable_aggregate_function_null_v2) { | 152 | 50 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 50 | AggregateFunctionTemplate>( | 154 | 50 | result.release(), argument_types_, attr.is_window_function)); | 155 | 50 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 50 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESR_EEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_IbLb1EEEEDaSM_SN_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_IbLb0EEEEDaSM_SN_ _ZZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESR_EEDaSM_SN_ Line | Count | Source | 150 | 427 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 427 | if (attr.enable_aggregate_function_null_v2) { | 152 | 16 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 16 | AggregateFunctionTemplate>( | 154 | 16 | result.release(), argument_types_, attr.is_window_function)); | 155 | 411 | } else { | 156 | 411 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 411 | AggregateFunctionTemplate>( | 158 | 411 | result.release(), argument_types_, attr.is_window_function)); | 159 | 411 | } | 160 | 427 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_EEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_IbLb1EEEEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_IbLb0EEEEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_EEDaSL_SM_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESQ_EEDaSL_SM_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESP_IbLb1EEEEDaSL_SM_ Line | Count | Source | 150 | 55 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 55 | if (attr.enable_aggregate_function_null_v2) { | 152 | 55 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 55 | AggregateFunctionTemplate>( | 154 | 55 | result.release(), argument_types_, attr.is_window_function)); | 155 | 55 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 55 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESP_IbLb0EEEEDaSL_SM_ _ZZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESQ_EEDaSL_SM_ Line | Count | Source | 150 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 13 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 13 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 13 | }, |
|
161 | 7.06k | make_bool_variant(argument_types_.size() > 1), |
162 | 7.06k | make_bool_variant(result_is_nullable)); |
163 | 7.06k | } |
164 | | |
165 | 8.32k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
166 | 8.32k | return AggregateFunctionPtr(result.release()); |
167 | 8.32k | } Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE3ENS_38AggregateFunctionUniqDistributeKeyDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE4ENS_38AggregateFunctionUniqDistributeKeyDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE5ENS_38AggregateFunctionUniqDistributeKeyDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE6ENS_38AggregateFunctionUniqDistributeKeyDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE7ENS_38AggregateFunctionUniqDistributeKeyDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE28ENS_38AggregateFunctionUniqDistributeKeyDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE29ENS_38AggregateFunctionUniqDistributeKeyDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE30ENS_38AggregateFunctionUniqDistributeKeyDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE35ENS_38AggregateFunctionUniqDistributeKeyDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_34AggregateFunctionUniqDistributeKeyILNS_13PrimitiveTypeE10ENS_38AggregateFunctionUniqDistributeKeyDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2.79k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2.79k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2.79k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2.79k | if (have_nullable(argument_types_)) { | 149 | 1.80k | std::visit( | 150 | 1.80k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.80k | if (attr.enable_aggregate_function_null_v2) { | 152 | 1.80k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1.80k | AggregateFunctionTemplate>( | 154 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.80k | } else { | 156 | 1.80k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1.80k | AggregateFunctionTemplate>( | 158 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 159 | 1.80k | } | 160 | 1.80k | }, | 161 | 1.80k | make_bool_variant(argument_types_.size() > 1), | 162 | 1.80k | make_bool_variant(result_is_nullable)); | 163 | 1.80k | } | 164 | | | 165 | 2.79k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2.79k | return AggregateFunctionPtr(result.release()); | 167 | 2.79k | } |
_ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 1.78k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 1.78k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 1.78k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 1.78k | if (have_nullable(argument_types_)) { | 149 | 1.74k | std::visit( | 150 | 1.74k | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1.74k | if (attr.enable_aggregate_function_null_v2) { | 152 | 1.74k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1.74k | AggregateFunctionTemplate>( | 154 | 1.74k | result.release(), argument_types_, attr.is_window_function)); | 155 | 1.74k | } else { | 156 | 1.74k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1.74k | AggregateFunctionTemplate>( | 158 | 1.74k | result.release(), argument_types_, attr.is_window_function)); | 159 | 1.74k | } | 160 | 1.74k | }, | 161 | 1.74k | make_bool_variant(argument_types_.size() > 1), | 162 | 1.74k | make_bool_variant(result_is_nullable)); | 163 | 1.74k | } | 164 | | | 165 | 1.78k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 1.78k | return AggregateFunctionPtr(result.release()); | 167 | 1.78k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE3EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE4EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 1 | if (have_nullable(argument_types_)) { | 149 | 1 | std::visit( | 150 | 1 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 1 | if (attr.enable_aggregate_function_null_v2) { | 152 | 1 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 1 | AggregateFunctionTemplate>( | 154 | 1 | result.release(), argument_types_, attr.is_window_function)); | 155 | 1 | } else { | 156 | 1 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 1 | AggregateFunctionTemplate>( | 158 | 1 | result.release(), argument_types_, attr.is_window_function)); | 159 | 1 | } | 160 | 1 | }, | 161 | 1 | make_bool_variant(argument_types_.size() > 1), | 162 | 1 | make_bool_variant(result_is_nullable)); | 163 | 1 | } | 164 | | | 165 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 1 | return AggregateFunctionPtr(result.release()); | 167 | 1 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 909 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 909 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 909 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 909 | if (have_nullable(argument_types_)) { | 149 | 865 | std::visit( | 150 | 865 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 865 | if (attr.enable_aggregate_function_null_v2) { | 152 | 865 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 865 | AggregateFunctionTemplate>( | 154 | 865 | result.release(), argument_types_, attr.is_window_function)); | 155 | 865 | } else { | 156 | 865 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 865 | AggregateFunctionTemplate>( | 158 | 865 | result.release(), argument_types_, attr.is_window_function)); | 159 | 865 | } | 160 | 865 | }, | 161 | 865 | make_bool_variant(argument_types_.size() > 1), | 162 | 865 | make_bool_variant(result_is_nullable)); | 163 | 865 | } | 164 | | | 165 | 909 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 909 | return AggregateFunctionPtr(result.release()); | 167 | 909 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 382 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 382 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 382 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 382 | if (have_nullable(argument_types_)) { | 149 | 376 | std::visit( | 150 | 376 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 376 | if (attr.enable_aggregate_function_null_v2) { | 152 | 376 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 376 | AggregateFunctionTemplate>( | 154 | 376 | result.release(), argument_types_, attr.is_window_function)); | 155 | 376 | } else { | 156 | 376 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 376 | AggregateFunctionTemplate>( | 158 | 376 | result.release(), argument_types_, attr.is_window_function)); | 159 | 376 | } | 160 | 376 | }, | 161 | 376 | make_bool_variant(argument_types_.size() > 1), | 162 | 376 | make_bool_variant(result_is_nullable)); | 163 | 376 | } | 164 | | | 165 | 382 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 382 | return AggregateFunctionPtr(result.release()); | 167 | 382 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE7EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 916 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 916 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 916 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 916 | if (have_nullable(argument_types_)) { | 149 | 841 | std::visit( | 150 | 841 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 841 | if (attr.enable_aggregate_function_null_v2) { | 152 | 841 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 841 | AggregateFunctionTemplate>( | 154 | 841 | result.release(), argument_types_, attr.is_window_function)); | 155 | 841 | } else { | 156 | 841 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 841 | AggregateFunctionTemplate>( | 158 | 841 | result.release(), argument_types_, attr.is_window_function)); | 159 | 841 | } | 160 | 841 | }, | 161 | 841 | make_bool_variant(argument_types_.size() > 1), | 162 | 841 | make_bool_variant(result_is_nullable)); | 163 | 841 | } | 164 | | | 165 | 916 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 916 | return AggregateFunctionPtr(result.release()); | 167 | 916 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 25 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 25 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 25 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 25 | if (have_nullable(argument_types_)) { | 149 | 13 | std::visit( | 150 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 13 | if (attr.enable_aggregate_function_null_v2) { | 152 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 13 | AggregateFunctionTemplate>( | 154 | 13 | result.release(), argument_types_, attr.is_window_function)); | 155 | 13 | } else { | 156 | 13 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 13 | AggregateFunctionTemplate>( | 158 | 13 | result.release(), argument_types_, attr.is_window_function)); | 159 | 13 | } | 160 | 13 | }, | 161 | 13 | make_bool_variant(argument_types_.size() > 1), | 162 | 13 | make_bool_variant(result_is_nullable)); | 163 | 13 | } | 164 | | | 165 | 25 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 25 | return AggregateFunctionPtr(result.release()); | 167 | 25 | } |
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 438 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 438 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 438 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 438 | if (have_nullable(argument_types_)) { | 149 | 428 | std::visit( | 150 | 428 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 428 | if (attr.enable_aggregate_function_null_v2) { | 152 | 428 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 428 | AggregateFunctionTemplate>( | 154 | 428 | result.release(), argument_types_, attr.is_window_function)); | 155 | 428 | } else { | 156 | 428 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 428 | AggregateFunctionTemplate>( | 158 | 428 | result.release(), argument_types_, attr.is_window_function)); | 159 | 428 | } | 160 | 428 | }, | 161 | 428 | make_bool_variant(argument_types_.size() > 1), | 162 | 428 | make_bool_variant(result_is_nullable)); | 163 | 428 | } | 164 | | | 165 | 438 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 438 | return AggregateFunctionPtr(result.release()); | 167 | 438 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 3 | if (have_nullable(argument_types_)) { | 149 | 3 | std::visit( | 150 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 3 | if (attr.enable_aggregate_function_null_v2) { | 152 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 3 | AggregateFunctionTemplate>( | 154 | 3 | result.release(), argument_types_, attr.is_window_function)); | 155 | 3 | } else { | 156 | 3 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 3 | AggregateFunctionTemplate>( | 158 | 3 | result.release(), argument_types_, attr.is_window_function)); | 159 | 3 | } | 160 | 3 | }, | 161 | 3 | make_bool_variant(argument_types_.size() > 1), | 162 | 3 | make_bool_variant(result_is_nullable)); | 163 | 3 | } | 164 | | | 165 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 3 | return AggregateFunctionPtr(result.release()); | 167 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 11 | if (have_nullable(argument_types_)) { | 149 | 11 | std::visit( | 150 | 11 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 11 | if (attr.enable_aggregate_function_null_v2) { | 152 | 11 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 11 | AggregateFunctionTemplate>( | 154 | 11 | result.release(), argument_types_, attr.is_window_function)); | 155 | 11 | } else { | 156 | 11 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 11 | AggregateFunctionTemplate>( | 158 | 11 | result.release(), argument_types_, attr.is_window_function)); | 159 | 11 | } | 160 | 11 | }, | 161 | 11 | make_bool_variant(argument_types_.size() > 1), | 162 | 11 | make_bool_variant(result_is_nullable)); | 163 | 11 | } | 164 | | | 165 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 11 | return AggregateFunctionPtr(result.release()); | 167 | 11 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2 | if (have_nullable(argument_types_)) { | 149 | 2 | std::visit( | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 2 | AggregateFunctionTemplate>( | 158 | 2 | result.release(), argument_types_, attr.is_window_function)); | 159 | 2 | } | 160 | 2 | }, | 161 | 2 | make_bool_variant(argument_types_.size() > 1), | 162 | 2 | make_bool_variant(result_is_nullable)); | 163 | 2 | } | 164 | | | 165 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2 | return AggregateFunctionPtr(result.release()); | 167 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2 | if (have_nullable(argument_types_)) { | 149 | 2 | std::visit( | 150 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 2 | if (attr.enable_aggregate_function_null_v2) { | 152 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 2 | AggregateFunctionTemplate>( | 154 | 2 | result.release(), argument_types_, attr.is_window_function)); | 155 | 2 | } else { | 156 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 2 | AggregateFunctionTemplate>( | 158 | 2 | result.release(), argument_types_, attr.is_window_function)); | 159 | 2 | } | 160 | 2 | }, | 161 | 2 | make_bool_variant(argument_types_.size() > 1), | 162 | 2 | make_bool_variant(result_is_nullable)); | 163 | 2 | } | 164 | | | 165 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2 | return AggregateFunctionPtr(result.release()); | 167 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 10 | if (have_nullable(argument_types_)) { | 149 | 10 | std::visit( | 150 | 10 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 10 | if (attr.enable_aggregate_function_null_v2) { | 152 | 10 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 10 | AggregateFunctionTemplate>( | 154 | 10 | result.release(), argument_types_, attr.is_window_function)); | 155 | 10 | } else { | 156 | 10 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 10 | AggregateFunctionTemplate>( | 158 | 10 | result.release(), argument_types_, attr.is_window_function)); | 159 | 10 | } | 160 | 10 | }, | 161 | 10 | make_bool_variant(argument_types_.size() > 1), | 162 | 10 | make_bool_variant(result_is_nullable)); | 163 | 10 | } | 164 | | | 165 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 10 | return AggregateFunctionPtr(result.release()); | 167 | 10 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 422 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 422 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 422 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 422 | if (have_nullable(argument_types_)) { | 149 | 415 | std::visit( | 150 | 415 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 415 | if (attr.enable_aggregate_function_null_v2) { | 152 | 415 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 415 | AggregateFunctionTemplate>( | 154 | 415 | result.release(), argument_types_, attr.is_window_function)); | 155 | 415 | } else { | 156 | 415 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 415 | AggregateFunctionTemplate>( | 158 | 415 | result.release(), argument_types_, attr.is_window_function)); | 159 | 415 | } | 160 | 415 | }, | 161 | 415 | make_bool_variant(argument_types_.size() > 1), | 162 | 415 | make_bool_variant(result_is_nullable)); | 163 | 415 | } | 164 | | | 165 | 422 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 422 | return AggregateFunctionPtr(result.release()); | 167 | 422 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEENS_17VarargsExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 75 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 75 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 75 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 75 | if (have_nullable(argument_types_)) { | 149 | 50 | std::visit( | 150 | 50 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 50 | if (attr.enable_aggregate_function_null_v2) { | 152 | 50 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 50 | AggregateFunctionTemplate>( | 154 | 50 | result.release(), argument_types_, attr.is_window_function)); | 155 | 50 | } else { | 156 | 50 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 50 | AggregateFunctionTemplate>( | 158 | 50 | result.release(), argument_types_, attr.is_window_function)); | 159 | 50 | } | 160 | 50 | }, | 161 | 50 | make_bool_variant(argument_types_.size() > 1), | 162 | 50 | make_bool_variant(result_is_nullable)); | 163 | 50 | } | 164 | | | 165 | 75 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 75 | return AggregateFunctionPtr(result.release()); | 167 | 75 | } |
_ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 441 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 441 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 441 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 441 | if (have_nullable(argument_types_)) { | 149 | 427 | std::visit( | 150 | 427 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 427 | if (attr.enable_aggregate_function_null_v2) { | 152 | 427 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 427 | AggregateFunctionTemplate>( | 154 | 427 | result.release(), argument_types_, attr.is_window_function)); | 155 | 427 | } else { | 156 | 427 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 427 | AggregateFunctionTemplate>( | 158 | 427 | result.release(), argument_types_, attr.is_window_function)); | 159 | 427 | } | 160 | 427 | }, | 161 | 427 | make_bool_variant(argument_types_.size() > 1), | 162 | 427 | make_bool_variant(result_is_nullable)); | 163 | 427 | } | 164 | | | 165 | 441 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 441 | return AggregateFunctionPtr(result.release()); | 167 | 441 | } |
_ZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 2 | if (have_nullable(argument_types_)) { | 149 | 0 | std::visit( | 150 | 0 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 0 | if (attr.enable_aggregate_function_null_v2) { | 152 | 0 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 0 | AggregateFunctionTemplate>( | 154 | 0 | result.release(), argument_types_, attr.is_window_function)); | 155 | 0 | } else { | 156 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 0 | AggregateFunctionTemplate>( | 158 | 0 | result.release(), argument_types_, attr.is_window_function)); | 159 | 0 | } | 160 | 0 | }, | 161 | 0 | make_bool_variant(argument_types_.size() > 1), | 162 | 0 | make_bool_variant(result_is_nullable)); | 163 | 0 | } | 164 | | | 165 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 2 | return AggregateFunctionPtr(result.release()); | 167 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 145 | 110 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 146 | 110 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 147 | 110 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 148 | 110 | if (have_nullable(argument_types_)) { | 149 | 68 | std::visit( | 150 | 68 | [&](auto multi_arguments, auto result_is_nullable) { | 151 | 68 | if (attr.enable_aggregate_function_null_v2) { | 152 | 68 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 153 | 68 | AggregateFunctionTemplate>( | 154 | 68 | result.release(), argument_types_, attr.is_window_function)); | 155 | 68 | } else { | 156 | 68 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 157 | 68 | AggregateFunctionTemplate>( | 158 | 68 | result.release(), argument_types_, attr.is_window_function)); | 159 | 68 | } | 160 | 68 | }, | 161 | 68 | make_bool_variant(argument_types_.size() > 1), | 162 | 68 | make_bool_variant(result_is_nullable)); | 163 | 68 | } | 164 | | | 165 | 110 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 166 | 110 | return AggregateFunctionPtr(result.release()); | 167 | 110 | } |
|
168 | | |
169 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
170 | | static AggregateFunctionPtr create_varargs_return_not_nullable( |
171 | | const DataTypes& argument_types_, const bool result_is_nullable, |
172 | 6.34k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
173 | 6.34k | if (!attr.is_foreach && result_is_nullable) { |
174 | 0 | throw doris::Exception(Status::InternalError( |
175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); |
176 | 0 | } |
177 | 6.34k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
178 | 6.34k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
179 | 6.34k | if (have_nullable(argument_types_)) { |
180 | 3.76k | if (argument_types_.size() > 1) { |
181 | 903 | if (attr.enable_aggregate_function_null_v2) { |
182 | 491 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( |
183 | 491 | result.release(), argument_types_, attr.is_window_function)); |
184 | 491 | } else { |
185 | 412 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
186 | 412 | result.release(), argument_types_, attr.is_window_function)); |
187 | 412 | } |
188 | 2.86k | } else { |
189 | 2.86k | if (attr.enable_aggregate_function_null_v2) { |
190 | 1.07k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
191 | 1.07k | result.release(), argument_types_, attr.is_window_function)); |
192 | 1.78k | } else { |
193 | 1.78k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
194 | 1.78k | result.release(), argument_types_, attr.is_window_function)); |
195 | 1.78k | } |
196 | 2.86k | } |
197 | 3.76k | } |
198 | | |
199 | 6.34k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
200 | 6.34k | return AggregateFunctionPtr(result.release()); |
201 | 6.34k | } _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 5 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 5 | } else { | 189 | 5 | if (attr.enable_aggregate_function_null_v2) { | 190 | 5 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 5 | result.release(), argument_types_, attr.is_window_function)); | 192 | 5 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 5 | } | 197 | 5 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE4ENS_30AggregateFunctionUniqExactDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE5ENS_30AggregateFunctionUniqExactDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 693 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 694 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 693 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 693 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 693 | if (have_nullable(argument_types_)) { | 180 | 625 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 625 | } else { | 189 | 625 | if (attr.enable_aggregate_function_null_v2) { | 190 | 214 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 214 | result.release(), argument_types_, attr.is_window_function)); | 192 | 411 | } else { | 193 | 411 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 411 | result.release(), argument_types_, attr.is_window_function)); | 195 | 411 | } | 196 | 625 | } | 197 | 625 | } | 198 | | | 199 | 693 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 693 | return AggregateFunctionPtr(result.release()); | 201 | 693 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 58 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 58 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 58 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 58 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 58 | if (have_nullable(argument_types_)) { | 180 | 25 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 25 | } else { | 189 | 25 | if (attr.enable_aggregate_function_null_v2) { | 190 | 25 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 25 | result.release(), argument_types_, attr.is_window_function)); | 192 | 25 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 25 | } | 197 | 25 | } | 198 | | | 199 | 58 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 58 | return AggregateFunctionPtr(result.release()); | 201 | 58 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE28ENS_30AggregateFunctionUniqExactDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE29ENS_30AggregateFunctionUniqExactDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 12 | result.release(), argument_types_, attr.is_window_function)); | 192 | 12 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 1 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 1 | if (have_nullable(argument_types_)) { | 180 | 1 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 1 | } else { | 189 | 1 | if (attr.enable_aggregate_function_null_v2) { | 190 | 1 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 1 | result.release(), argument_types_, attr.is_window_function)); | 192 | 1 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 1 | } | 197 | 1 | } | 198 | | | 199 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 1 | return AggregateFunctionPtr(result.release()); | 201 | 1 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 13 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 13 | if (have_nullable(argument_types_)) { | 180 | 13 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 13 | } else { | 189 | 13 | if (attr.enable_aggregate_function_null_v2) { | 190 | 13 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 13 | result.release(), argument_types_, attr.is_window_function)); | 192 | 13 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 13 | } | 197 | 13 | } | 198 | | | 199 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 13 | return AggregateFunctionPtr(result.release()); | 201 | 13 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 587 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 587 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 587 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 587 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 587 | if (have_nullable(argument_types_)) { | 180 | 274 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 274 | } else { | 189 | 274 | if (attr.enable_aggregate_function_null_v2) { | 190 | 274 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 274 | result.release(), argument_types_, attr.is_window_function)); | 192 | 274 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 274 | } | 197 | 274 | } | 198 | | | 199 | 587 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 587 | return AggregateFunctionPtr(result.release()); | 201 | 587 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 4 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 4 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 4 | if (attr.enable_aggregate_function_null_v2) { | 190 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 4 | result.release(), argument_types_, attr.is_window_function)); | 192 | 4 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 4 | } | 197 | 4 | } | 198 | | | 199 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 4 | return AggregateFunctionPtr(result.release()); | 201 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE8ENS_30AggregateFunctionUniqExactDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE9ENS_30AggregateFunctionUniqExactDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE25ENS_30AggregateFunctionUniqExactDataILS3_25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 4 | if (attr.enable_aggregate_function_null_v2) { | 190 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 4 | result.release(), argument_types_, attr.is_window_function)); | 192 | 4 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 4 | } | 197 | 4 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 16 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 16 | if (have_nullable(argument_types_)) { | 180 | 16 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 16 | } else { | 189 | 16 | if (attr.enable_aggregate_function_null_v2) { | 190 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 16 | result.release(), argument_types_, attr.is_window_function)); | 192 | 16 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 16 | } | 197 | 16 | } | 198 | | | 199 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 16 | return AggregateFunctionPtr(result.release()); | 201 | 16 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 11 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 11 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 11 | return AggregateFunctionPtr(result.release()); | 201 | 11 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 14 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 14 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 14 | return AggregateFunctionPtr(result.release()); | 201 | 14 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 9 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 9 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 9 | return AggregateFunctionPtr(result.release()); | 201 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 13 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 13 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 13 | return AggregateFunctionPtr(result.release()); | 201 | 13 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 442 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 442 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 442 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 442 | if (have_nullable(argument_types_)) { | 180 | 432 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 432 | } else { | 189 | 432 | if (attr.enable_aggregate_function_null_v2) { | 190 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 20 | result.release(), argument_types_, attr.is_window_function)); | 192 | 412 | } else { | 193 | 412 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 412 | result.release(), argument_types_, attr.is_window_function)); | 195 | 412 | } | 196 | 432 | } | 197 | 432 | } | 198 | | | 199 | 442 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 442 | return AggregateFunctionPtr(result.release()); | 201 | 442 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 1.04k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 1.04k | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 1.04k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 1.04k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 1.04k | if (have_nullable(argument_types_)) { | 180 | 428 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 428 | } else { | 189 | 428 | if (attr.enable_aggregate_function_null_v2) { | 190 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 16 | result.release(), argument_types_, attr.is_window_function)); | 192 | 412 | } else { | 193 | 412 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 412 | result.release(), argument_types_, attr.is_window_function)); | 195 | 412 | } | 196 | 428 | } | 197 | 428 | } | 198 | | | 199 | 1.04k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 1.04k | return AggregateFunctionPtr(result.release()); | 201 | 1.04k | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 15 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 15 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 15 | return AggregateFunctionPtr(result.release()); | 201 | 15 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 10 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 10 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 10 | return AggregateFunctionPtr(result.release()); | 201 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 10 | if (attr.enable_aggregate_function_null_v2) { | 190 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 10 | result.release(), argument_types_, attr.is_window_function)); | 192 | 10 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 10 | } | 197 | 10 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 8 | if (attr.enable_aggregate_function_null_v2) { | 190 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 8 | result.release(), argument_types_, attr.is_window_function)); | 192 | 8 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 8 | } | 197 | 8 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 4 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 4 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 4 | return AggregateFunctionPtr(result.release()); | 201 | 4 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 0 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 0 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 0 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 6 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 6 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 6 | return AggregateFunctionPtr(result.release()); | 201 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 17 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 17 | } else { | 189 | 17 | if (attr.enable_aggregate_function_null_v2) { | 190 | 17 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 17 | result.release(), argument_types_, attr.is_window_function)); | 192 | 17 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 17 | } | 197 | 17 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 23 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 23 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 18 | if (attr.enable_aggregate_function_null_v2) { | 190 | 18 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 18 | result.release(), argument_types_, attr.is_window_function)); | 192 | 18 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 18 | } | 197 | 18 | } | 198 | | | 199 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 23 | return AggregateFunctionPtr(result.release()); | 201 | 23 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 17 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 17 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 17 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 17 | if (have_nullable(argument_types_)) { | 180 | 16 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 16 | } else { | 189 | 16 | if (attr.enable_aggregate_function_null_v2) { | 190 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 16 | result.release(), argument_types_, attr.is_window_function)); | 192 | 16 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 16 | } | 197 | 16 | } | 198 | | | 199 | 17 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 17 | return AggregateFunctionPtr(result.release()); | 201 | 17 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 23 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 23 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 18 | if (attr.enable_aggregate_function_null_v2) { | 190 | 18 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 18 | result.release(), argument_types_, attr.is_window_function)); | 192 | 18 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 18 | } | 197 | 18 | } | 198 | | | 199 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 23 | return AggregateFunctionPtr(result.release()); | 201 | 23 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 185 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 185 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 185 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 185 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 185 | if (have_nullable(argument_types_)) { | 180 | 171 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 171 | } else { | 189 | 171 | if (attr.enable_aggregate_function_null_v2) { | 190 | 29 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 29 | result.release(), argument_types_, attr.is_window_function)); | 192 | 142 | } else { | 193 | 142 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 142 | result.release(), argument_types_, attr.is_window_function)); | 195 | 142 | } | 196 | 171 | } | 197 | 171 | } | 198 | | | 199 | 185 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 185 | return AggregateFunctionPtr(result.release()); | 201 | 185 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 59 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 59 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 59 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 59 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 59 | if (have_nullable(argument_types_)) { | 180 | 33 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 33 | } else { | 189 | 33 | if (attr.enable_aggregate_function_null_v2) { | 190 | 33 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 33 | result.release(), argument_types_, attr.is_window_function)); | 192 | 33 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 33 | } | 197 | 33 | } | 198 | | | 199 | 59 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 59 | return AggregateFunctionPtr(result.release()); | 201 | 59 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 12 | result.release(), argument_types_, attr.is_window_function)); | 192 | 12 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 619 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 619 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 619 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 619 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 619 | if (have_nullable(argument_types_)) { | 180 | 10 | if (argument_types_.size() > 1) { | 181 | 10 | if (attr.enable_aggregate_function_null_v2) { | 182 | 10 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 10 | result.release(), argument_types_, attr.is_window_function)); | 184 | 10 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 10 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 10 | } | 198 | | | 199 | 619 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 619 | return AggregateFunctionPtr(result.release()); | 201 | 619 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 617 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 617 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 617 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 617 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 617 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 617 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 617 | return AggregateFunctionPtr(result.release()); | 201 | 617 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 9 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 9 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 9 | return AggregateFunctionPtr(result.release()); | 201 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 9 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 9 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 9 | return AggregateFunctionPtr(result.release()); | 201 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 8 | if (argument_types_.size() > 1) { | 181 | 8 | if (attr.enable_aggregate_function_null_v2) { | 182 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 8 | result.release(), argument_types_, attr.is_window_function)); | 184 | 8 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 8 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 8 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE30ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE35ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE11ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE12ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE27ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE42ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE36ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE37ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 33 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 33 | if (have_nullable(argument_types_)) { | 180 | 25 | if (argument_types_.size() > 1) { | 181 | 25 | if (attr.enable_aggregate_function_null_v2) { | 182 | 25 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 25 | result.release(), argument_types_, attr.is_window_function)); | 184 | 25 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 25 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 25 | } | 198 | | | 199 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 33 | return AggregateFunctionPtr(result.release()); | 201 | 33 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 32 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 32 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 32 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 32 | if (have_nullable(argument_types_)) { | 180 | 24 | if (argument_types_.size() > 1) { | 181 | 24 | if (attr.enable_aggregate_function_null_v2) { | 182 | 24 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 24 | result.release(), argument_types_, attr.is_window_function)); | 184 | 24 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 24 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 24 | } | 198 | | | 199 | 32 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 32 | return AggregateFunctionPtr(result.release()); | 201 | 32 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 12 | if (attr.enable_aggregate_function_null_v2) { | 182 | 12 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 12 | result.release(), argument_types_, attr.is_window_function)); | 184 | 12 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 12 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 71 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 71 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 71 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 71 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 71 | if (have_nullable(argument_types_)) { | 180 | 45 | if (argument_types_.size() > 1) { | 181 | 45 | if (attr.enable_aggregate_function_null_v2) { | 182 | 45 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 45 | result.release(), argument_types_, attr.is_window_function)); | 184 | 45 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 45 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 45 | } | 198 | | | 199 | 71 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 71 | return AggregateFunctionPtr(result.release()); | 201 | 71 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 442 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 442 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 442 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 442 | if (have_nullable(argument_types_)) { | 180 | 428 | if (argument_types_.size() > 1) { | 181 | 428 | if (attr.enable_aggregate_function_null_v2) { | 182 | 16 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 16 | result.release(), argument_types_, attr.is_window_function)); | 184 | 412 | } else { | 185 | 412 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 412 | result.release(), argument_types_, attr.is_window_function)); | 187 | 412 | } | 188 | 428 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 428 | } | 198 | | | 199 | 442 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 442 | return AggregateFunctionPtr(result.release()); | 201 | 442 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 5 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 5 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 4 | if (attr.enable_aggregate_function_null_v2) { | 182 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 4 | result.release(), argument_types_, attr.is_window_function)); | 184 | 4 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 4 | } | 198 | | | 199 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 5 | return AggregateFunctionPtr(result.release()); | 201 | 5 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 12 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 12 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 11 | if (attr.enable_aggregate_function_null_v2) { | 182 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 11 | result.release(), argument_types_, attr.is_window_function)); | 184 | 11 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 11 | } | 198 | | | 199 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 12 | return AggregateFunctionPtr(result.release()); | 201 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 7 | if (argument_types_.size() > 1) { | 181 | 7 | if (attr.enable_aggregate_function_null_v2) { | 182 | 7 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 7 | result.release(), argument_types_, attr.is_window_function)); | 184 | 7 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 7 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 7 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 8 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 8 | if (have_nullable(argument_types_)) { | 180 | 7 | if (argument_types_.size() > 1) { | 181 | 7 | if (attr.enable_aggregate_function_null_v2) { | 182 | 7 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 7 | result.release(), argument_types_, attr.is_window_function)); | 184 | 7 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 7 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 7 | } | 198 | | | 199 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 8 | return AggregateFunctionPtr(result.release()); | 201 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 18 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 18 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 18 | return AggregateFunctionPtr(result.release()); | 201 | 18 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 43 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 43 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 43 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 43 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 43 | if (have_nullable(argument_types_)) { | 180 | 35 | if (argument_types_.size() > 1) { | 181 | 35 | if (attr.enable_aggregate_function_null_v2) { | 182 | 35 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 35 | result.release(), argument_types_, attr.is_window_function)); | 184 | 35 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 35 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 35 | } | 198 | | | 199 | 43 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 43 | return AggregateFunctionPtr(result.release()); | 201 | 43 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 19 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 19 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 19 | return AggregateFunctionPtr(result.release()); | 201 | 19 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 19 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 19 | if (have_nullable(argument_types_)) { | 180 | 18 | if (argument_types_.size() > 1) { | 181 | 18 | if (attr.enable_aggregate_function_null_v2) { | 182 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 18 | result.release(), argument_types_, attr.is_window_function)); | 184 | 18 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 18 | } else { | 189 | 0 | if (attr.enable_aggregate_function_null_v2) { | 190 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 0 | result.release(), argument_types_, attr.is_window_function)); | 192 | 0 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 0 | } | 197 | 18 | } | 198 | | | 199 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 19 | return AggregateFunctionPtr(result.release()); | 201 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 4 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 4 | if (have_nullable(argument_types_)) { | 180 | 4 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 4 | } else { | 189 | 4 | if (attr.enable_aggregate_function_null_v2) { | 190 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 4 | result.release(), argument_types_, attr.is_window_function)); | 192 | 4 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 4 | } | 197 | 4 | } | 198 | | | 199 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 4 | return AggregateFunctionPtr(result.release()); | 201 | 4 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 447 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 447 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 447 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 447 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 447 | if (have_nullable(argument_types_)) { | 180 | 431 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 431 | } else { | 189 | 431 | if (attr.enable_aggregate_function_null_v2) { | 190 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 20 | result.release(), argument_types_, attr.is_window_function)); | 192 | 411 | } else { | 193 | 411 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 411 | result.release(), argument_types_, attr.is_window_function)); | 195 | 411 | } | 196 | 431 | } | 197 | 431 | } | 198 | | | 199 | 447 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 447 | return AggregateFunctionPtr(result.release()); | 201 | 447 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 21 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 21 | if (have_nullable(argument_types_)) { | 180 | 12 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 12 | } else { | 189 | 12 | if (attr.enable_aggregate_function_null_v2) { | 190 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 12 | result.release(), argument_types_, attr.is_window_function)); | 192 | 12 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 12 | } | 197 | 12 | } | 198 | | | 199 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 21 | return AggregateFunctionPtr(result.release()); | 201 | 21 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 20 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 20 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 20 | return AggregateFunctionPtr(result.release()); | 201 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 19 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 19 | if (have_nullable(argument_types_)) { | 180 | 11 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 11 | } else { | 189 | 11 | if (attr.enable_aggregate_function_null_v2) { | 190 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 11 | result.release(), argument_types_, attr.is_window_function)); | 192 | 11 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 11 | } | 197 | 11 | } | 198 | | | 199 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 19 | return AggregateFunctionPtr(result.release()); | 201 | 19 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE10EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 39 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 39 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 39 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 39 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 39 | if (have_nullable(argument_types_)) { | 180 | 22 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 22 | } else { | 189 | 22 | if (attr.enable_aggregate_function_null_v2) { | 190 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 22 | result.release(), argument_types_, attr.is_window_function)); | 192 | 22 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 22 | } | 197 | 22 | } | 198 | | | 199 | 39 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 39 | return AggregateFunctionPtr(result.release()); | 201 | 39 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 38 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 38 | if (have_nullable(argument_types_)) { | 180 | 22 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 22 | } else { | 189 | 22 | if (attr.enable_aggregate_function_null_v2) { | 190 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 22 | result.release(), argument_types_, attr.is_window_function)); | 192 | 22 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 22 | } | 197 | 22 | } | 198 | | | 199 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 38 | return AggregateFunctionPtr(result.release()); | 201 | 38 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 38 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 38 | if (have_nullable(argument_types_)) { | 180 | 22 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 22 | } else { | 189 | 22 | if (attr.enable_aggregate_function_null_v2) { | 190 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 22 | result.release(), argument_types_, attr.is_window_function)); | 192 | 22 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 22 | } | 197 | 22 | } | 198 | | | 199 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 38 | return AggregateFunctionPtr(result.release()); | 201 | 38 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE42EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 172 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 173 | 2 | if (!attr.is_foreach && result_is_nullable) { | 174 | 0 | throw doris::Exception(Status::InternalError( | 175 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 176 | 0 | } | 177 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 178 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 179 | 2 | if (have_nullable(argument_types_)) { | 180 | 2 | if (argument_types_.size() > 1) { | 181 | 0 | if (attr.enable_aggregate_function_null_v2) { | 182 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 183 | 0 | result.release(), argument_types_, attr.is_window_function)); | 184 | 0 | } else { | 185 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 186 | 0 | result.release(), argument_types_, attr.is_window_function)); | 187 | 0 | } | 188 | 2 | } else { | 189 | 2 | if (attr.enable_aggregate_function_null_v2) { | 190 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 191 | 2 | result.release(), argument_types_, attr.is_window_function)); | 192 | 2 | } else { | 193 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 194 | 0 | result.release(), argument_types_, attr.is_window_function)); | 195 | 0 | } | 196 | 2 | } | 197 | 2 | } | 198 | | | 199 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 200 | 2 | return AggregateFunctionPtr(result.release()); | 201 | 2 | } |
|
202 | | |
203 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
204 | | static AggregateFunctionPtr create_multi_arguments(const DataTypes& argument_types_, |
205 | | const bool result_is_nullable, |
206 | | const AggregateFunctionAttr& attr, |
207 | 10.3k | TArgs&&... args) { |
208 | 10.3k | if (!(argument_types_.size() > 1)) { |
209 | 0 | throw doris::Exception(Status::InternalError( |
210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); |
211 | 0 | } |
212 | 10.3k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
213 | 10.3k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
214 | 10.3k | if (have_nullable(argument_types_)) { |
215 | 10.0k | std::visit( |
216 | 10.0k | [&](auto result_is_nullable) { |
217 | 10.0k | if (attr.enable_aggregate_function_null_v2) { |
218 | 906 | result.reset(new NullableV2T<true, result_is_nullable, |
219 | 906 | AggregateFunctionTemplate>( |
220 | 906 | result.release(), argument_types_, attr.is_window_function)); |
221 | 9.19k | } else { |
222 | 9.19k | result.reset(new NullableT<true, result_is_nullable, |
223 | 9.19k | AggregateFunctionTemplate>( |
224 | 9.19k | result.release(), argument_types_, attr.is_window_function)); |
225 | 9.19k | } |
226 | 10.0k | }, Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 483 | [&](auto result_is_nullable) { | 217 | 483 | if (attr.enable_aggregate_function_null_v2) { | 218 | 71 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 71 | AggregateFunctionTemplate>( | 220 | 71 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 483 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 15 | [&](auto result_is_nullable) { | 217 | 15 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 12 | } else { | 222 | 12 | result.reset(new NullableT<true, result_is_nullable, | 223 | 12 | AggregateFunctionTemplate>( | 224 | 12 | result.release(), argument_types_, attr.is_window_function)); | 225 | 12 | } | 226 | 15 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 6 | result.reset(new NullableT<true, result_is_nullable, | 223 | 6 | AggregateFunctionTemplate>( | 224 | 6 | result.release(), argument_types_, attr.is_window_function)); | 225 | 6 | } | 226 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2.06k | [&](auto result_is_nullable) { | 217 | 2.06k | if (attr.enable_aggregate_function_null_v2) { | 218 | 73 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 73 | AggregateFunctionTemplate>( | 220 | 73 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.99k | } else { | 222 | 1.99k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.99k | AggregateFunctionTemplate>( | 224 | 1.99k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.99k | } | 226 | 2.06k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 580 | [&](auto result_is_nullable) { | 217 | 580 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 577 | } else { | 222 | 577 | result.reset(new NullableT<true, result_is_nullable, | 223 | 577 | AggregateFunctionTemplate>( | 224 | 577 | result.release(), argument_types_, attr.is_window_function)); | 225 | 577 | } | 226 | 580 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 326 | [&](auto result_is_nullable) { | 217 | 326 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 324 | } else { | 222 | 324 | result.reset(new NullableT<true, result_is_nullable, | 223 | 324 | AggregateFunctionTemplate>( | 224 | 324 | result.release(), argument_types_, attr.is_window_function)); | 225 | 324 | } | 226 | 326 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 274 | [&](auto result_is_nullable) { | 217 | 274 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 266 | } else { | 222 | 266 | result.reset(new NullableT<true, result_is_nullable, | 223 | 266 | AggregateFunctionTemplate>( | 224 | 266 | result.release(), argument_types_, attr.is_window_function)); | 225 | 266 | } | 226 | 274 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 442 | [&](auto result_is_nullable) { | 217 | 442 | if (attr.enable_aggregate_function_null_v2) { | 218 | 30 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 30 | AggregateFunctionTemplate>( | 220 | 30 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 442 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 25 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 3 | [&](auto result_is_nullable) { | 217 | 3 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 3 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 3 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 1 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 419 | [&](auto result_is_nullable) { | 217 | 419 | if (attr.enable_aggregate_function_null_v2) { | 218 | 7 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 7 | AggregateFunctionTemplate>( | 220 | 7 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 419 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 1 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 419 | [&](auto result_is_nullable) { | 217 | 419 | if (attr.enable_aggregate_function_null_v2) { | 218 | 7 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 7 | AggregateFunctionTemplate>( | 220 | 7 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 419 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 727 | [&](auto result_is_nullable) { | 217 | 727 | if (attr.enable_aggregate_function_null_v2) { | 218 | 41 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 41 | AggregateFunctionTemplate>( | 220 | 41 | result.release(), argument_types_, attr.is_window_function)); | 221 | 686 | } else { | 222 | 686 | result.reset(new NullableT<true, result_is_nullable, | 223 | 686 | AggregateFunctionTemplate>( | 224 | 686 | result.release(), argument_types_, attr.is_window_function)); | 225 | 686 | } | 226 | 727 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 29 | [&](auto result_is_nullable) { | 217 | 29 | if (attr.enable_aggregate_function_null_v2) { | 218 | 29 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 29 | AggregateFunctionTemplate>( | 220 | 29 | result.release(), argument_types_, attr.is_window_function)); | 221 | 29 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 29 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 17 | [&](auto result_is_nullable) { | 217 | 17 | if (attr.enable_aggregate_function_null_v2) { | 218 | 17 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 17 | AggregateFunctionTemplate>( | 220 | 17 | result.release(), argument_types_, attr.is_window_function)); | 221 | 17 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 17 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 20 | [&](auto result_is_nullable) { | 217 | 20 | if (attr.enable_aggregate_function_null_v2) { | 218 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 20 | AggregateFunctionTemplate>( | 220 | 20 | result.release(), argument_types_, attr.is_window_function)); | 221 | 20 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 1.61k | [&](auto result_is_nullable) { | 217 | 1.61k | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.61k | } else { | 222 | 1.61k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.61k | AggregateFunctionTemplate>( | 224 | 1.61k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.61k | } | 226 | 1.61k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 6 | AggregateFunctionTemplate>( | 220 | 6 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 14 | [&](auto result_is_nullable) { | 217 | 14 | if (attr.enable_aggregate_function_null_v2) { | 218 | 14 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 14 | AggregateFunctionTemplate>( | 220 | 14 | result.release(), argument_types_, attr.is_window_function)); | 221 | 14 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 24 | [&](auto result_is_nullable) { | 217 | 24 | if (attr.enable_aggregate_function_null_v2) { | 218 | 24 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 24 | AggregateFunctionTemplate>( | 220 | 24 | result.release(), argument_types_, attr.is_window_function)); | 221 | 24 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 24 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 26 | [&](auto result_is_nullable) { | 217 | 26 | if (attr.enable_aggregate_function_null_v2) { | 218 | 26 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 26 | AggregateFunctionTemplate>( | 220 | 26 | result.release(), argument_types_, attr.is_window_function)); | 221 | 26 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 26 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 216 | 563 | [&](auto result_is_nullable) { | 217 | 563 | if (attr.enable_aggregate_function_null_v2) { | 218 | 151 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 151 | AggregateFunctionTemplate>( | 220 | 151 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 563 | }, |
_ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ Line | Count | Source | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 508 | [&](auto result_is_nullable) { | 217 | 508 | if (attr.enable_aggregate_function_null_v2) { | 218 | 96 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 96 | AggregateFunctionTemplate>( | 220 | 96 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 508 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 216 | 450 | [&](auto result_is_nullable) { | 217 | 450 | if (attr.enable_aggregate_function_null_v2) { | 218 | 38 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 38 | AggregateFunctionTemplate>( | 220 | 38 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 450 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 25 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 440 | [&](auto result_is_nullable) { | 217 | 440 | if (attr.enable_aggregate_function_null_v2) { | 218 | 28 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 28 | AggregateFunctionTemplate>( | 220 | 28 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 440 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 216 | 437 | [&](auto result_is_nullable) { | 217 | 437 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 412 | } else { | 222 | 412 | result.reset(new NullableT<true, result_is_nullable, | 223 | 412 | AggregateFunctionTemplate>( | 224 | 412 | result.release(), argument_types_, attr.is_window_function)); | 225 | 412 | } | 226 | 437 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ |
227 | 10.0k | make_bool_variant(result_is_nullable)); |
228 | 10.0k | } |
229 | 10.3k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
230 | 10.3k | return AggregateFunctionPtr(result.release()); |
231 | 10.3k | } Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 498 | TArgs&&... args) { | 208 | 498 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 498 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 498 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 498 | if (have_nullable(argument_types_)) { | 215 | 483 | std::visit( | 216 | 483 | [&](auto result_is_nullable) { | 217 | 483 | if (attr.enable_aggregate_function_null_v2) { | 218 | 483 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 483 | AggregateFunctionTemplate>( | 220 | 483 | result.release(), argument_types_, attr.is_window_function)); | 221 | 483 | } else { | 222 | 483 | result.reset(new NullableT<true, result_is_nullable, | 223 | 483 | AggregateFunctionTemplate>( | 224 | 483 | result.release(), argument_types_, attr.is_window_function)); | 225 | 483 | } | 226 | 483 | }, | 227 | 483 | make_bool_variant(result_is_nullable)); | 228 | 483 | } | 229 | 498 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 498 | return AggregateFunctionPtr(result.release()); | 231 | 498 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 15 | TArgs&&... args) { | 208 | 15 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 15 | if (have_nullable(argument_types_)) { | 215 | 15 | std::visit( | 216 | 15 | [&](auto result_is_nullable) { | 217 | 15 | if (attr.enable_aggregate_function_null_v2) { | 218 | 15 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 15 | AggregateFunctionTemplate>( | 220 | 15 | result.release(), argument_types_, attr.is_window_function)); | 221 | 15 | } else { | 222 | 15 | result.reset(new NullableT<true, result_is_nullable, | 223 | 15 | AggregateFunctionTemplate>( | 224 | 15 | result.release(), argument_types_, attr.is_window_function)); | 225 | 15 | } | 226 | 15 | }, | 227 | 15 | make_bool_variant(result_is_nullable)); | 228 | 15 | } | 229 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 15 | return AggregateFunctionPtr(result.release()); | 231 | 15 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 5 | TArgs&&... args) { | 208 | 5 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 5 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 5 | return AggregateFunctionPtr(result.release()); | 231 | 5 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 8 | TArgs&&... args) { | 208 | 8 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 8 | if (have_nullable(argument_types_)) { | 215 | 8 | std::visit( | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 8 | result.reset(new NullableT<true, result_is_nullable, | 223 | 8 | AggregateFunctionTemplate>( | 224 | 8 | result.release(), argument_types_, attr.is_window_function)); | 225 | 8 | } | 226 | 8 | }, | 227 | 8 | make_bool_variant(result_is_nullable)); | 228 | 8 | } | 229 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 8 | return AggregateFunctionPtr(result.release()); | 231 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 6 | TArgs&&... args) { | 208 | 6 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 6 | if (have_nullable(argument_types_)) { | 215 | 6 | std::visit( | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 6 | AggregateFunctionTemplate>( | 220 | 6 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 6 | result.reset(new NullableT<true, result_is_nullable, | 223 | 6 | AggregateFunctionTemplate>( | 224 | 6 | result.release(), argument_types_, attr.is_window_function)); | 225 | 6 | } | 226 | 6 | }, | 227 | 6 | make_bool_variant(result_is_nullable)); | 228 | 6 | } | 229 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 6 | return AggregateFunctionPtr(result.release()); | 231 | 6 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2.08k | TArgs&&... args) { | 208 | 2.08k | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2.08k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2.08k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2.08k | if (have_nullable(argument_types_)) { | 215 | 2.06k | std::visit( | 216 | 2.06k | [&](auto result_is_nullable) { | 217 | 2.06k | if (attr.enable_aggregate_function_null_v2) { | 218 | 2.06k | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2.06k | AggregateFunctionTemplate>( | 220 | 2.06k | result.release(), argument_types_, attr.is_window_function)); | 221 | 2.06k | } else { | 222 | 2.06k | result.reset(new NullableT<true, result_is_nullable, | 223 | 2.06k | AggregateFunctionTemplate>( | 224 | 2.06k | result.release(), argument_types_, attr.is_window_function)); | 225 | 2.06k | } | 226 | 2.06k | }, | 227 | 2.06k | make_bool_variant(result_is_nullable)); | 228 | 2.06k | } | 229 | 2.08k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2.08k | return AggregateFunctionPtr(result.release()); | 231 | 2.08k | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 579 | TArgs&&... args) { | 208 | 579 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 579 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 579 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 580 | if (have_nullable(argument_types_)) { | 215 | 580 | std::visit( | 216 | 580 | [&](auto result_is_nullable) { | 217 | 580 | if (attr.enable_aggregate_function_null_v2) { | 218 | 580 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 580 | AggregateFunctionTemplate>( | 220 | 580 | result.release(), argument_types_, attr.is_window_function)); | 221 | 580 | } else { | 222 | 580 | result.reset(new NullableT<true, result_is_nullable, | 223 | 580 | AggregateFunctionTemplate>( | 224 | 580 | result.release(), argument_types_, attr.is_window_function)); | 225 | 580 | } | 226 | 580 | }, | 227 | 580 | make_bool_variant(result_is_nullable)); | 228 | 580 | } | 229 | 579 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 579 | return AggregateFunctionPtr(result.release()); | 231 | 579 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 326 | TArgs&&... args) { | 208 | 326 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 326 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 326 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 326 | if (have_nullable(argument_types_)) { | 215 | 326 | std::visit( | 216 | 326 | [&](auto result_is_nullable) { | 217 | 326 | if (attr.enable_aggregate_function_null_v2) { | 218 | 326 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 326 | AggregateFunctionTemplate>( | 220 | 326 | result.release(), argument_types_, attr.is_window_function)); | 221 | 326 | } else { | 222 | 326 | result.reset(new NullableT<true, result_is_nullable, | 223 | 326 | AggregateFunctionTemplate>( | 224 | 326 | result.release(), argument_types_, attr.is_window_function)); | 225 | 326 | } | 226 | 326 | }, | 227 | 326 | make_bool_variant(result_is_nullable)); | 228 | 326 | } | 229 | 326 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 326 | return AggregateFunctionPtr(result.release()); | 231 | 326 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 274 | TArgs&&... args) { | 208 | 274 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 274 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 274 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 274 | if (have_nullable(argument_types_)) { | 215 | 273 | std::visit( | 216 | 273 | [&](auto result_is_nullable) { | 217 | 273 | if (attr.enable_aggregate_function_null_v2) { | 218 | 273 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 273 | AggregateFunctionTemplate>( | 220 | 273 | result.release(), argument_types_, attr.is_window_function)); | 221 | 273 | } else { | 222 | 273 | result.reset(new NullableT<true, result_is_nullable, | 223 | 273 | AggregateFunctionTemplate>( | 224 | 273 | result.release(), argument_types_, attr.is_window_function)); | 225 | 273 | } | 226 | 273 | }, | 227 | 273 | make_bool_variant(result_is_nullable)); | 228 | 273 | } | 229 | 274 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 274 | return AggregateFunctionPtr(result.release()); | 231 | 274 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 5 | TArgs&&... args) { | 208 | 5 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 5 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 5 | return AggregateFunctionPtr(result.release()); | 231 | 5 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 8 | TArgs&&... args) { | 208 | 8 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 8 | if (have_nullable(argument_types_)) { | 215 | 8 | std::visit( | 216 | 8 | [&](auto result_is_nullable) { | 217 | 8 | if (attr.enable_aggregate_function_null_v2) { | 218 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 8 | AggregateFunctionTemplate>( | 220 | 8 | result.release(), argument_types_, attr.is_window_function)); | 221 | 8 | } else { | 222 | 8 | result.reset(new NullableT<true, result_is_nullable, | 223 | 8 | AggregateFunctionTemplate>( | 224 | 8 | result.release(), argument_types_, attr.is_window_function)); | 225 | 8 | } | 226 | 8 | }, | 227 | 8 | make_bool_variant(result_is_nullable)); | 228 | 8 | } | 229 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 8 | return AggregateFunctionPtr(result.release()); | 231 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 466 | TArgs&&... args) { | 208 | 466 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 466 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 466 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 466 | if (have_nullable(argument_types_)) { | 215 | 442 | std::visit( | 216 | 442 | [&](auto result_is_nullable) { | 217 | 442 | if (attr.enable_aggregate_function_null_v2) { | 218 | 442 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 442 | AggregateFunctionTemplate>( | 220 | 442 | result.release(), argument_types_, attr.is_window_function)); | 221 | 442 | } else { | 222 | 442 | result.reset(new NullableT<true, result_is_nullable, | 223 | 442 | AggregateFunctionTemplate>( | 224 | 442 | result.release(), argument_types_, attr.is_window_function)); | 225 | 442 | } | 226 | 442 | }, | 227 | 442 | make_bool_variant(result_is_nullable)); | 228 | 442 | } | 229 | 466 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 466 | return AggregateFunctionPtr(result.release()); | 231 | 466 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 41 | TArgs&&... args) { | 208 | 41 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 41 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 41 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 41 | if (have_nullable(argument_types_)) { | 215 | 25 | std::visit( | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 25 | result.reset(new NullableT<true, result_is_nullable, | 223 | 25 | AggregateFunctionTemplate>( | 224 | 25 | result.release(), argument_types_, attr.is_window_function)); | 225 | 25 | } | 226 | 25 | }, | 227 | 25 | make_bool_variant(result_is_nullable)); | 228 | 25 | } | 229 | 41 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 41 | return AggregateFunctionPtr(result.release()); | 231 | 41 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 4 | TArgs&&... args) { | 208 | 4 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 4 | if (have_nullable(argument_types_)) { | 215 | 4 | std::visit( | 216 | 4 | [&](auto result_is_nullable) { | 217 | 4 | if (attr.enable_aggregate_function_null_v2) { | 218 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 4 | AggregateFunctionTemplate>( | 220 | 4 | result.release(), argument_types_, attr.is_window_function)); | 221 | 4 | } else { | 222 | 4 | result.reset(new NullableT<true, result_is_nullable, | 223 | 4 | AggregateFunctionTemplate>( | 224 | 4 | result.release(), argument_types_, attr.is_window_function)); | 225 | 4 | } | 226 | 4 | }, | 227 | 4 | make_bool_variant(result_is_nullable)); | 228 | 4 | } | 229 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 4 | return AggregateFunctionPtr(result.release()); | 231 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 3 | TArgs&&... args) { | 208 | 3 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 3 | if (have_nullable(argument_types_)) { | 215 | 3 | std::visit( | 216 | 3 | [&](auto result_is_nullable) { | 217 | 3 | if (attr.enable_aggregate_function_null_v2) { | 218 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 3 | AggregateFunctionTemplate>( | 220 | 3 | result.release(), argument_types_, attr.is_window_function)); | 221 | 3 | } else { | 222 | 3 | result.reset(new NullableT<true, result_is_nullable, | 223 | 3 | AggregateFunctionTemplate>( | 224 | 3 | result.release(), argument_types_, attr.is_window_function)); | 225 | 3 | } | 226 | 3 | }, | 227 | 3 | make_bool_variant(result_is_nullable)); | 228 | 3 | } | 229 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 3 | return AggregateFunctionPtr(result.release()); | 231 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1 | TArgs&&... args) { | 208 | 1 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1 | if (have_nullable(argument_types_)) { | 215 | 1 | std::visit( | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 1 | result.reset(new NullableT<true, result_is_nullable, | 223 | 1 | AggregateFunctionTemplate>( | 224 | 1 | result.release(), argument_types_, attr.is_window_function)); | 225 | 1 | } | 226 | 1 | }, | 227 | 1 | make_bool_variant(result_is_nullable)); | 228 | 1 | } | 229 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1 | return AggregateFunctionPtr(result.release()); | 231 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 423 | TArgs&&... args) { | 208 | 423 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 423 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 423 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 423 | if (have_nullable(argument_types_)) { | 215 | 419 | std::visit( | 216 | 419 | [&](auto result_is_nullable) { | 217 | 419 | if (attr.enable_aggregate_function_null_v2) { | 218 | 419 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 419 | AggregateFunctionTemplate>( | 220 | 419 | result.release(), argument_types_, attr.is_window_function)); | 221 | 419 | } else { | 222 | 419 | result.reset(new NullableT<true, result_is_nullable, | 223 | 419 | AggregateFunctionTemplate>( | 224 | 419 | result.release(), argument_types_, attr.is_window_function)); | 225 | 419 | } | 226 | 419 | }, | 227 | 419 | make_bool_variant(result_is_nullable)); | 228 | 419 | } | 229 | 423 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 423 | return AggregateFunctionPtr(result.release()); | 231 | 423 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE3ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE4ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1 | TArgs&&... args) { | 208 | 1 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1 | if (have_nullable(argument_types_)) { | 215 | 1 | std::visit( | 216 | 1 | [&](auto result_is_nullable) { | 217 | 1 | if (attr.enable_aggregate_function_null_v2) { | 218 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1 | AggregateFunctionTemplate>( | 220 | 1 | result.release(), argument_types_, attr.is_window_function)); | 221 | 1 | } else { | 222 | 1 | result.reset(new NullableT<true, result_is_nullable, | 223 | 1 | AggregateFunctionTemplate>( | 224 | 1 | result.release(), argument_types_, attr.is_window_function)); | 225 | 1 | } | 226 | 1 | }, | 227 | 1 | make_bool_variant(result_is_nullable)); | 228 | 1 | } | 229 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1 | return AggregateFunctionPtr(result.release()); | 231 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE6ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE7ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE8ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE9ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE28ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE29ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE30ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE35ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE10ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 423 | TArgs&&... args) { | 208 | 423 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 423 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 423 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 423 | if (have_nullable(argument_types_)) { | 215 | 419 | std::visit( | 216 | 419 | [&](auto result_is_nullable) { | 217 | 419 | if (attr.enable_aggregate_function_null_v2) { | 218 | 419 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 419 | AggregateFunctionTemplate>( | 220 | 419 | result.release(), argument_types_, attr.is_window_function)); | 221 | 419 | } else { | 222 | 419 | result.reset(new NullableT<true, result_is_nullable, | 223 | 419 | AggregateFunctionTemplate>( | 224 | 419 | result.release(), argument_types_, attr.is_window_function)); | 225 | 419 | } | 226 | 419 | }, | 227 | 419 | make_bool_variant(result_is_nullable)); | 228 | 419 | } | 229 | 423 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 423 | return AggregateFunctionPtr(result.release()); | 231 | 423 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE42ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE36ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE37ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_42AggregateFunctionPercentileApproxTwoParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 740 | TArgs&&... args) { | 208 | 740 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 740 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 740 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 740 | if (have_nullable(argument_types_)) { | 215 | 726 | std::visit( | 216 | 726 | [&](auto result_is_nullable) { | 217 | 726 | if (attr.enable_aggregate_function_null_v2) { | 218 | 726 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 726 | AggregateFunctionTemplate>( | 220 | 726 | result.release(), argument_types_, attr.is_window_function)); | 221 | 726 | } else { | 222 | 726 | result.reset(new NullableT<true, result_is_nullable, | 223 | 726 | AggregateFunctionTemplate>( | 224 | 726 | result.release(), argument_types_, attr.is_window_function)); | 225 | 726 | } | 226 | 726 | }, | 227 | 726 | make_bool_variant(result_is_nullable)); | 228 | 726 | } | 229 | 740 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 740 | return AggregateFunctionPtr(result.release()); | 231 | 740 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 37 | TArgs&&... args) { | 208 | 37 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 37 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 37 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 37 | if (have_nullable(argument_types_)) { | 215 | 29 | std::visit( | 216 | 29 | [&](auto result_is_nullable) { | 217 | 29 | if (attr.enable_aggregate_function_null_v2) { | 218 | 29 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 29 | AggregateFunctionTemplate>( | 220 | 29 | result.release(), argument_types_, attr.is_window_function)); | 221 | 29 | } else { | 222 | 29 | result.reset(new NullableT<true, result_is_nullable, | 223 | 29 | AggregateFunctionTemplate>( | 224 | 29 | result.release(), argument_types_, attr.is_window_function)); | 225 | 29 | } | 226 | 29 | }, | 227 | 29 | make_bool_variant(result_is_nullable)); | 228 | 29 | } | 229 | 37 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 37 | return AggregateFunctionPtr(result.release()); | 231 | 37 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 23 | TArgs&&... args) { | 208 | 23 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 23 | if (have_nullable(argument_types_)) { | 215 | 17 | std::visit( | 216 | 17 | [&](auto result_is_nullable) { | 217 | 17 | if (attr.enable_aggregate_function_null_v2) { | 218 | 17 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 17 | AggregateFunctionTemplate>( | 220 | 17 | result.release(), argument_types_, attr.is_window_function)); | 221 | 17 | } else { | 222 | 17 | result.reset(new NullableT<true, result_is_nullable, | 223 | 17 | AggregateFunctionTemplate>( | 224 | 17 | result.release(), argument_types_, attr.is_window_function)); | 225 | 17 | } | 226 | 17 | }, | 227 | 17 | make_bool_variant(result_is_nullable)); | 228 | 17 | } | 229 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 23 | return AggregateFunctionPtr(result.release()); | 231 | 23 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 22 | TArgs&&... args) { | 208 | 22 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 22 | if (have_nullable(argument_types_)) { | 215 | 20 | std::visit( | 216 | 20 | [&](auto result_is_nullable) { | 217 | 20 | if (attr.enable_aggregate_function_null_v2) { | 218 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 20 | AggregateFunctionTemplate>( | 220 | 20 | result.release(), argument_types_, attr.is_window_function)); | 221 | 20 | } else { | 222 | 20 | result.reset(new NullableT<true, result_is_nullable, | 223 | 20 | AggregateFunctionTemplate>( | 224 | 20 | result.release(), argument_types_, attr.is_window_function)); | 225 | 20 | } | 226 | 20 | }, | 227 | 20 | make_bool_variant(result_is_nullable)); | 228 | 20 | } | 229 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 22 | return AggregateFunctionPtr(result.release()); | 231 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 1.61k | TArgs&&... args) { | 208 | 1.61k | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 1.61k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 1.61k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 1.61k | if (have_nullable(argument_types_)) { | 215 | 1.61k | std::visit( | 216 | 1.61k | [&](auto result_is_nullable) { | 217 | 1.61k | if (attr.enable_aggregate_function_null_v2) { | 218 | 1.61k | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 1.61k | AggregateFunctionTemplate>( | 220 | 1.61k | result.release(), argument_types_, attr.is_window_function)); | 221 | 1.61k | } else { | 222 | 1.61k | result.reset(new NullableT<true, result_is_nullable, | 223 | 1.61k | AggregateFunctionTemplate>( | 224 | 1.61k | result.release(), argument_types_, attr.is_window_function)); | 225 | 1.61k | } | 226 | 1.61k | }, | 227 | 1.61k | make_bool_variant(result_is_nullable)); | 228 | 1.61k | } | 229 | 1.61k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 1.61k | return AggregateFunctionPtr(result.release()); | 231 | 1.61k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 8 | TArgs&&... args) { | 208 | 8 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 8 | if (have_nullable(argument_types_)) { | 215 | 6 | std::visit( | 216 | 6 | [&](auto result_is_nullable) { | 217 | 6 | if (attr.enable_aggregate_function_null_v2) { | 218 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 6 | AggregateFunctionTemplate>( | 220 | 6 | result.release(), argument_types_, attr.is_window_function)); | 221 | 6 | } else { | 222 | 6 | result.reset(new NullableT<true, result_is_nullable, | 223 | 6 | AggregateFunctionTemplate>( | 224 | 6 | result.release(), argument_types_, attr.is_window_function)); | 225 | 6 | } | 226 | 6 | }, | 227 | 6 | make_bool_variant(result_is_nullable)); | 228 | 6 | } | 229 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 8 | return AggregateFunctionPtr(result.release()); | 231 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 14 | TArgs&&... args) { | 208 | 14 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 14 | if (have_nullable(argument_types_)) { | 215 | 14 | std::visit( | 216 | 14 | [&](auto result_is_nullable) { | 217 | 14 | if (attr.enable_aggregate_function_null_v2) { | 218 | 14 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 14 | AggregateFunctionTemplate>( | 220 | 14 | result.release(), argument_types_, attr.is_window_function)); | 221 | 14 | } else { | 222 | 14 | result.reset(new NullableT<true, result_is_nullable, | 223 | 14 | AggregateFunctionTemplate>( | 224 | 14 | result.release(), argument_types_, attr.is_window_function)); | 225 | 14 | } | 226 | 14 | }, | 227 | 14 | make_bool_variant(result_is_nullable)); | 228 | 14 | } | 229 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 14 | return AggregateFunctionPtr(result.release()); | 231 | 14 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 28 | TArgs&&... args) { | 208 | 28 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 28 | if (have_nullable(argument_types_)) { | 215 | 24 | std::visit( | 216 | 24 | [&](auto result_is_nullable) { | 217 | 24 | if (attr.enable_aggregate_function_null_v2) { | 218 | 24 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 24 | AggregateFunctionTemplate>( | 220 | 24 | result.release(), argument_types_, attr.is_window_function)); | 221 | 24 | } else { | 222 | 24 | result.reset(new NullableT<true, result_is_nullable, | 223 | 24 | AggregateFunctionTemplate>( | 224 | 24 | result.release(), argument_types_, attr.is_window_function)); | 225 | 24 | } | 226 | 24 | }, | 227 | 24 | make_bool_variant(result_is_nullable)); | 228 | 24 | } | 229 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 28 | return AggregateFunctionPtr(result.release()); | 231 | 28 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 42 | TArgs&&... args) { | 208 | 42 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 42 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 42 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 42 | if (have_nullable(argument_types_)) { | 215 | 26 | std::visit( | 216 | 26 | [&](auto result_is_nullable) { | 217 | 26 | if (attr.enable_aggregate_function_null_v2) { | 218 | 26 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 26 | AggregateFunctionTemplate>( | 220 | 26 | result.release(), argument_types_, attr.is_window_function)); | 221 | 26 | } else { | 222 | 26 | result.reset(new NullableT<true, result_is_nullable, | 223 | 26 | AggregateFunctionTemplate>( | 224 | 26 | result.release(), argument_types_, attr.is_window_function)); | 225 | 26 | } | 226 | 26 | }, | 227 | 26 | make_bool_variant(result_is_nullable)); | 228 | 26 | } | 229 | 42 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 42 | return AggregateFunctionPtr(result.release()); | 231 | 42 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionPercentileV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 11 | TArgs&&... args) { | 208 | 11 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 11 | if (have_nullable(argument_types_)) { | 215 | 11 | std::visit( | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 11 | result.reset(new NullableT<true, result_is_nullable, | 223 | 11 | AggregateFunctionTemplate>( | 224 | 11 | result.release(), argument_types_, attr.is_window_function)); | 225 | 11 | } | 226 | 11 | }, | 227 | 11 | make_bool_variant(result_is_nullable)); | 228 | 11 | } | 229 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 11 | return AggregateFunctionPtr(result.release()); | 231 | 11 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 6 | TArgs&&... args) { | 208 | 6 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 6 | if (have_nullable(argument_types_)) { | 215 | 0 | std::visit( | 216 | 0 | [&](auto result_is_nullable) { | 217 | 0 | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 0 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 0 | }, | 227 | 0 | make_bool_variant(result_is_nullable)); | 228 | 0 | } | 229 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 6 | return AggregateFunctionPtr(result.release()); | 231 | 6 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionWindowFunnelV2EJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 623 | TArgs&&... args) { | 208 | 623 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 623 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 623 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 623 | if (have_nullable(argument_types_)) { | 215 | 563 | std::visit( | 216 | 563 | [&](auto result_is_nullable) { | 217 | 563 | if (attr.enable_aggregate_function_null_v2) { | 218 | 563 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 563 | AggregateFunctionTemplate>( | 220 | 563 | result.release(), argument_types_, attr.is_window_function)); | 221 | 563 | } else { | 222 | 563 | result.reset(new NullableT<true, result_is_nullable, | 223 | 563 | AggregateFunctionTemplate>( | 224 | 563 | result.release(), argument_types_, attr.is_window_function)); | 225 | 563 | } | 226 | 563 | }, | 227 | 563 | make_bool_variant(result_is_nullable)); | 228 | 563 | } | 229 | 623 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 623 | return AggregateFunctionPtr(result.release()); | 231 | 623 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEENS_15MultiExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 2 | TArgs&&... args) { | 208 | 2 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 2 | if (have_nullable(argument_types_)) { | 215 | 2 | std::visit( | 216 | 2 | [&](auto result_is_nullable) { | 217 | 2 | if (attr.enable_aggregate_function_null_v2) { | 218 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 2 | AggregateFunctionTemplate>( | 220 | 2 | result.release(), argument_types_, attr.is_window_function)); | 221 | 2 | } else { | 222 | 2 | result.reset(new NullableT<true, result_is_nullable, | 223 | 2 | AggregateFunctionTemplate>( | 224 | 2 | result.release(), argument_types_, attr.is_window_function)); | 225 | 2 | } | 226 | 2 | }, | 227 | 2 | make_bool_variant(result_is_nullable)); | 228 | 2 | } | 229 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 2 | return AggregateFunctionPtr(result.release()); | 231 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 569 | TArgs&&... args) { | 208 | 569 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 569 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 569 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 569 | if (have_nullable(argument_types_)) { | 215 | 508 | std::visit( | 216 | 508 | [&](auto result_is_nullable) { | 217 | 508 | if (attr.enable_aggregate_function_null_v2) { | 218 | 508 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 508 | AggregateFunctionTemplate>( | 220 | 508 | result.release(), argument_types_, attr.is_window_function)); | 221 | 508 | } else { | 222 | 508 | result.reset(new NullableT<true, result_is_nullable, | 223 | 508 | AggregateFunctionTemplate>( | 224 | 508 | result.release(), argument_types_, attr.is_window_function)); | 225 | 508 | } | 226 | 508 | }, | 227 | 508 | make_bool_variant(result_is_nullable)); | 228 | 508 | } | 229 | 569 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 569 | return AggregateFunctionPtr(result.release()); | 231 | 569 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 457 | TArgs&&... args) { | 208 | 457 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 457 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 457 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 457 | if (have_nullable(argument_types_)) { | 215 | 450 | std::visit( | 216 | 450 | [&](auto result_is_nullable) { | 217 | 450 | if (attr.enable_aggregate_function_null_v2) { | 218 | 450 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 450 | AggregateFunctionTemplate>( | 220 | 450 | result.release(), argument_types_, attr.is_window_function)); | 221 | 450 | } else { | 222 | 450 | result.reset(new NullableT<true, result_is_nullable, | 223 | 450 | AggregateFunctionTemplate>( | 224 | 450 | result.release(), argument_types_, attr.is_window_function)); | 225 | 450 | } | 226 | 450 | }, | 227 | 450 | make_bool_variant(result_is_nullable)); | 228 | 450 | } | 229 | 457 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 457 | return AggregateFunctionPtr(result.release()); | 231 | 457 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 26 | TArgs&&... args) { | 208 | 26 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 26 | if (have_nullable(argument_types_)) { | 215 | 25 | std::visit( | 216 | 25 | [&](auto result_is_nullable) { | 217 | 25 | if (attr.enable_aggregate_function_null_v2) { | 218 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 25 | AggregateFunctionTemplate>( | 220 | 25 | result.release(), argument_types_, attr.is_window_function)); | 221 | 25 | } else { | 222 | 25 | result.reset(new NullableT<true, result_is_nullable, | 223 | 25 | AggregateFunctionTemplate>( | 224 | 25 | result.release(), argument_types_, attr.is_window_function)); | 225 | 25 | } | 226 | 25 | }, | 227 | 25 | make_bool_variant(result_is_nullable)); | 228 | 25 | } | 229 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 26 | return AggregateFunctionPtr(result.release()); | 231 | 26 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 446 | TArgs&&... args) { | 208 | 446 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 446 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 446 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 446 | if (have_nullable(argument_types_)) { | 215 | 440 | std::visit( | 216 | 440 | [&](auto result_is_nullable) { | 217 | 440 | if (attr.enable_aggregate_function_null_v2) { | 218 | 440 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 440 | AggregateFunctionTemplate>( | 220 | 440 | result.release(), argument_types_, attr.is_window_function)); | 221 | 440 | } else { | 222 | 440 | result.reset(new NullableT<true, result_is_nullable, | 223 | 440 | AggregateFunctionTemplate>( | 224 | 440 | result.release(), argument_types_, attr.is_window_function)); | 225 | 440 | } | 226 | 440 | }, | 227 | 440 | make_bool_variant(result_is_nullable)); | 228 | 440 | } | 229 | 446 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 446 | return AggregateFunctionPtr(result.release()); | 231 | 446 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 442 | TArgs&&... args) { | 208 | 442 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 442 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 442 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 442 | if (have_nullable(argument_types_)) { | 215 | 437 | std::visit( | 216 | 437 | [&](auto result_is_nullable) { | 217 | 437 | if (attr.enable_aggregate_function_null_v2) { | 218 | 437 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 437 | AggregateFunctionTemplate>( | 220 | 437 | result.release(), argument_types_, attr.is_window_function)); | 221 | 437 | } else { | 222 | 437 | result.reset(new NullableT<true, result_is_nullable, | 223 | 437 | AggregateFunctionTemplate>( | 224 | 437 | result.release(), argument_types_, attr.is_window_function)); | 225 | 437 | } | 226 | 437 | }, | 227 | 437 | make_bool_variant(result_is_nullable)); | 228 | 437 | } | 229 | 442 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 442 | return AggregateFunctionPtr(result.release()); | 231 | 442 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 13 | TArgs&&... args) { | 208 | 13 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 13 | if (have_nullable(argument_types_)) { | 215 | 11 | std::visit( | 216 | 11 | [&](auto result_is_nullable) { | 217 | 11 | if (attr.enable_aggregate_function_null_v2) { | 218 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 11 | AggregateFunctionTemplate>( | 220 | 11 | result.release(), argument_types_, attr.is_window_function)); | 221 | 11 | } else { | 222 | 11 | result.reset(new NullableT<true, result_is_nullable, | 223 | 11 | AggregateFunctionTemplate>( | 224 | 11 | result.release(), argument_types_, attr.is_window_function)); | 225 | 11 | } | 226 | 11 | }, | 227 | 11 | make_bool_variant(result_is_nullable)); | 228 | 11 | } | 229 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 13 | return AggregateFunctionPtr(result.release()); | 231 | 13 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 207 | 18 | TArgs&&... args) { | 208 | 18 | if (!(argument_types_.size() > 1)) { | 209 | 0 | throw doris::Exception(Status::InternalError( | 210 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 211 | 0 | } | 212 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 213 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 214 | 18 | if (have_nullable(argument_types_)) { | 215 | 0 | std::visit( | 216 | 0 | [&](auto result_is_nullable) { | 217 | 0 | if (attr.enable_aggregate_function_null_v2) { | 218 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 219 | 0 | AggregateFunctionTemplate>( | 220 | 0 | result.release(), argument_types_, attr.is_window_function)); | 221 | 0 | } else { | 222 | 0 | result.reset(new NullableT<true, result_is_nullable, | 223 | 0 | AggregateFunctionTemplate>( | 224 | 0 | result.release(), argument_types_, attr.is_window_function)); | 225 | 0 | } | 226 | 0 | }, | 227 | 0 | make_bool_variant(result_is_nullable)); | 228 | 0 | } | 229 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 230 | 18 | return AggregateFunctionPtr(result.release()); | 231 | 18 | } |
|
232 | | |
233 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
234 | | static AggregateFunctionPtr create_multi_arguments_return_not_nullable( |
235 | | const DataTypes& argument_types_, const bool result_is_nullable, |
236 | 1.09k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
237 | 1.09k | if (!(argument_types_.size() > 1)) { |
238 | 0 | throw doris::Exception( |
239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " |
240 | 0 | "argument_types_ size must be > 1")); |
241 | 0 | } |
242 | 1.09k | if (!attr.is_foreach && result_is_nullable) { |
243 | 0 | throw doris::Exception( |
244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " |
245 | 0 | "result_is_nullable must be false")); |
246 | 0 | } |
247 | 1.09k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
248 | 1.09k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
249 | 1.09k | if (have_nullable(argument_types_)) { |
250 | 988 | if (attr.enable_aggregate_function_null_v2) { |
251 | 164 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( |
252 | 164 | result.release(), argument_types_, attr.is_window_function)); |
253 | 824 | } else { |
254 | 824 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
255 | 824 | result.release(), argument_types_, attr.is_window_function)); |
256 | 824 | } |
257 | 988 | } |
258 | 1.09k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
259 | 1.09k | return AggregateFunctionPtr(result.release()); |
260 | 1.09k | } Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 412 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 412 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 412 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 412 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 412 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 412 | if (have_nullable(argument_types_)) { | 250 | 412 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 412 | } else { | 254 | 412 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 412 | result.release(), argument_types_, attr.is_window_function)); | 256 | 412 | } | 257 | 412 | } | 258 | 412 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 412 | return AggregateFunctionPtr(result.release()); | 260 | 412 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 4 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 4 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 4 | if (have_nullable(argument_types_)) { | 250 | 4 | if (attr.enable_aggregate_function_null_v2) { | 251 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 4 | result.release(), argument_types_, attr.is_window_function)); | 253 | 4 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 4 | } | 258 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 4 | return AggregateFunctionPtr(result.release()); | 260 | 4 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 6 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 6 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 6 | if (have_nullable(argument_types_)) { | 250 | 6 | if (attr.enable_aggregate_function_null_v2) { | 251 | 6 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 6 | result.release(), argument_types_, attr.is_window_function)); | 253 | 6 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 6 | } | 258 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 6 | return AggregateFunctionPtr(result.release()); | 260 | 6 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 45 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 45 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 45 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 45 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 45 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 45 | if (have_nullable(argument_types_)) { | 250 | 39 | if (attr.enable_aggregate_function_null_v2) { | 251 | 39 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 39 | result.release(), argument_types_, attr.is_window_function)); | 253 | 39 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 39 | } | 258 | 45 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 45 | return AggregateFunctionPtr(result.release()); | 260 | 45 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 13 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 13 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 13 | if (have_nullable(argument_types_)) { | 250 | 12 | if (attr.enable_aggregate_function_null_v2) { | 251 | 12 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 12 | result.release(), argument_types_, attr.is_window_function)); | 253 | 12 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 12 | } | 258 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 13 | return AggregateFunctionPtr(result.release()); | 260 | 13 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 4 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 4 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 4 | if (have_nullable(argument_types_)) { | 250 | 4 | if (attr.enable_aggregate_function_null_v2) { | 251 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 4 | result.release(), argument_types_, attr.is_window_function)); | 253 | 4 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 4 | } | 258 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 4 | return AggregateFunctionPtr(result.release()); | 260 | 4 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 2 | if (attr.enable_aggregate_function_null_v2) { | 251 | 2 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 2 | result.release(), argument_types_, attr.is_window_function)); | 253 | 2 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 2 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_34AggregateFunctionPercentileArrayV2ILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 13 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 13 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 13 | if (have_nullable(argument_types_)) { | 250 | 13 | if (attr.enable_aggregate_function_null_v2) { | 251 | 13 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 13 | result.release(), argument_types_, attr.is_window_function)); | 253 | 13 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 13 | } | 258 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 13 | return AggregateFunctionPtr(result.release()); | 260 | 13 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 3 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 3 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 3 | if (have_nullable(argument_types_)) { | 250 | 2 | if (attr.enable_aggregate_function_null_v2) { | 251 | 2 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 2 | result.release(), argument_types_, attr.is_window_function)); | 253 | 2 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 2 | } | 258 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 3 | return AggregateFunctionPtr(result.release()); | 260 | 3 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 1 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 1 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 1 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 1 | return AggregateFunctionPtr(result.release()); | 260 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 444 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 444 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 444 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 444 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 444 | if (have_nullable(argument_types_)) { | 250 | 428 | if (attr.enable_aggregate_function_null_v2) { | 251 | 16 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 16 | result.release(), argument_types_, attr.is_window_function)); | 253 | 412 | } else { | 254 | 412 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 412 | result.release(), argument_types_, attr.is_window_function)); | 256 | 412 | } | 257 | 428 | } | 258 | 444 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 444 | return AggregateFunctionPtr(result.release()); | 260 | 444 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 21 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 21 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 21 | if (have_nullable(argument_types_)) { | 250 | 11 | if (attr.enable_aggregate_function_null_v2) { | 251 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 11 | result.release(), argument_types_, attr.is_window_function)); | 253 | 11 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 11 | } | 258 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 21 | return AggregateFunctionPtr(result.release()); | 260 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 236 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 237 | 2 | if (!(argument_types_.size() > 1)) { | 238 | 0 | throw doris::Exception( | 239 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 240 | 0 | "argument_types_ size must be > 1")); | 241 | 0 | } | 242 | 2 | if (!attr.is_foreach && result_is_nullable) { | 243 | 0 | throw doris::Exception( | 244 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 245 | 0 | "result_is_nullable must be false")); | 246 | 0 | } | 247 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 248 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 249 | 2 | if (have_nullable(argument_types_)) { | 250 | 0 | if (attr.enable_aggregate_function_null_v2) { | 251 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 252 | 0 | result.release(), argument_types_, attr.is_window_function)); | 253 | 0 | } else { | 254 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 255 | 0 | result.release(), argument_types_, attr.is_window_function)); | 256 | 0 | } | 257 | 0 | } | 258 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 259 | 2 | return AggregateFunctionPtr(result.release()); | 260 | 2 | } |
|
261 | | |
262 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
263 | | static AggregateFunctionPtr create_unary_arguments(const DataTypes& argument_types_, |
264 | | const bool result_is_nullable, |
265 | | const AggregateFunctionAttr& attr, |
266 | 117k | TArgs&&... args) { |
267 | 117k | if (!(argument_types_.size() == 1)) { |
268 | 0 | throw doris::Exception(Status::InternalError( |
269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); |
270 | 0 | } |
271 | 117k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
272 | 117k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
273 | 117k | if (have_nullable(argument_types_)) { |
274 | 67.8k | std::visit( |
275 | 67.9k | [&](auto result_is_nullable) { |
276 | 67.9k | if (attr.enable_aggregate_function_null_v2) { |
277 | 45.8k | result.reset(new NullableV2T<false, result_is_nullable, |
278 | 45.8k | AggregateFunctionTemplate>( |
279 | 45.8k | result.release(), argument_types_, attr.is_window_function)); |
280 | 45.8k | } else { |
281 | 22.0k | result.reset(new NullableT<false, result_is_nullable, |
282 | 22.0k | AggregateFunctionTemplate>( |
283 | 22.0k | result.release(), argument_types_, attr.is_window_function)); |
284 | 22.0k | } |
285 | 67.9k | }, Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 893 | [&](auto result_is_nullable) { | 276 | 893 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 893 | } else { | 281 | 893 | result.reset(new NullableT<false, result_is_nullable, | 282 | 893 | AggregateFunctionTemplate>( | 283 | 893 | result.release(), argument_types_, attr.is_window_function)); | 284 | 893 | } | 285 | 893 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 7 | [&](auto result_is_nullable) { | 276 | 7 | if (attr.enable_aggregate_function_null_v2) { | 277 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7 | AggregateFunctionTemplate>( | 279 | 7 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 104 | [&](auto result_is_nullable) { | 276 | 104 | if (attr.enable_aggregate_function_null_v2) { | 277 | 104 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 104 | AggregateFunctionTemplate>( | 279 | 104 | result.release(), argument_types_, attr.is_window_function)); | 280 | 104 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 104 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 26 | [&](auto result_is_nullable) { | 276 | 26 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 26 | } else { | 281 | 26 | result.reset(new NullableT<false, result_is_nullable, | 282 | 26 | AggregateFunctionTemplate>( | 283 | 26 | result.release(), argument_types_, attr.is_window_function)); | 284 | 26 | } | 285 | 26 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 719 | [&](auto result_is_nullable) { | 276 | 719 | if (attr.enable_aggregate_function_null_v2) { | 277 | 696 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 696 | AggregateFunctionTemplate>( | 279 | 696 | result.release(), argument_types_, attr.is_window_function)); | 280 | 696 | } else { | 281 | 23 | result.reset(new NullableT<false, result_is_nullable, | 282 | 23 | AggregateFunctionTemplate>( | 283 | 23 | result.release(), argument_types_, attr.is_window_function)); | 284 | 23 | } | 285 | 719 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 1 | [&](auto result_is_nullable) { | 276 | 1 | if (attr.enable_aggregate_function_null_v2) { | 277 | 1 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1 | AggregateFunctionTemplate>( | 279 | 1 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 1 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 549 | [&](auto result_is_nullable) { | 276 | 549 | if (attr.enable_aggregate_function_null_v2) { | 277 | 423 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 423 | AggregateFunctionTemplate>( | 279 | 423 | result.release(), argument_types_, attr.is_window_function)); | 280 | 423 | } else { | 281 | 126 | result.reset(new NullableT<false, result_is_nullable, | 282 | 126 | AggregateFunctionTemplate>( | 283 | 126 | result.release(), argument_types_, attr.is_window_function)); | 284 | 126 | } | 285 | 549 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 1 | [&](auto result_is_nullable) { | 276 | 1 | if (attr.enable_aggregate_function_null_v2) { | 277 | 1 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1 | AggregateFunctionTemplate>( | 279 | 1 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 1 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 143 | [&](auto result_is_nullable) { | 276 | 143 | if (attr.enable_aggregate_function_null_v2) { | 277 | 36 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 36 | AggregateFunctionTemplate>( | 279 | 36 | result.release(), argument_types_, attr.is_window_function)); | 280 | 107 | } else { | 281 | 107 | result.reset(new NullableT<false, result_is_nullable, | 282 | 107 | AggregateFunctionTemplate>( | 283 | 107 | result.release(), argument_types_, attr.is_window_function)); | 284 | 107 | } | 285 | 143 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 10 | [&](auto result_is_nullable) { | 276 | 10 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 10 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 126 | [&](auto result_is_nullable) { | 276 | 126 | if (attr.enable_aggregate_function_null_v2) { | 277 | 66 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 66 | AggregateFunctionTemplate>( | 279 | 66 | result.release(), argument_types_, attr.is_window_function)); | 280 | 66 | } else { | 281 | 60 | result.reset(new NullableT<false, result_is_nullable, | 282 | 60 | AggregateFunctionTemplate>( | 283 | 60 | result.release(), argument_types_, attr.is_window_function)); | 284 | 60 | } | 285 | 126 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 9 | AggregateFunctionTemplate>( | 279 | 9 | result.release(), argument_types_, attr.is_window_function)); | 280 | 9 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 9 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 51 | [&](auto result_is_nullable) { | 276 | 51 | if (attr.enable_aggregate_function_null_v2) { | 277 | 15 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 15 | AggregateFunctionTemplate>( | 279 | 15 | result.release(), argument_types_, attr.is_window_function)); | 280 | 36 | } else { | 281 | 36 | result.reset(new NullableT<false, result_is_nullable, | 282 | 36 | AggregateFunctionTemplate>( | 283 | 36 | result.release(), argument_types_, attr.is_window_function)); | 284 | 36 | } | 285 | 51 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 435 | [&](auto result_is_nullable) { | 276 | 435 | if (attr.enable_aggregate_function_null_v2) { | 277 | 23 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 23 | AggregateFunctionTemplate>( | 279 | 23 | result.release(), argument_types_, attr.is_window_function)); | 280 | 412 | } else { | 281 | 412 | result.reset(new NullableT<false, result_is_nullable, | 282 | 412 | AggregateFunctionTemplate>( | 283 | 412 | result.release(), argument_types_, attr.is_window_function)); | 284 | 412 | } | 285 | 435 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4.77k | [&](auto result_is_nullable) { | 276 | 4.77k | if (attr.enable_aggregate_function_null_v2) { | 277 | 4.10k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4.10k | AggregateFunctionTemplate>( | 279 | 4.10k | result.release(), argument_types_, attr.is_window_function)); | 280 | 4.10k | } else { | 281 | 665 | result.reset(new NullableT<false, result_is_nullable, | 282 | 665 | AggregateFunctionTemplate>( | 283 | 665 | result.release(), argument_types_, attr.is_window_function)); | 284 | 665 | } | 285 | 4.77k | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 3.25k | [&](auto result_is_nullable) { | 276 | 3.25k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.02k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.02k | AggregateFunctionTemplate>( | 279 | 1.02k | result.release(), argument_types_, attr.is_window_function)); | 280 | 2.22k | } else { | 281 | 2.22k | result.reset(new NullableT<false, result_is_nullable, | 282 | 2.22k | AggregateFunctionTemplate>( | 283 | 2.22k | result.release(), argument_types_, attr.is_window_function)); | 284 | 2.22k | } | 285 | 3.25k | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 7 | [&](auto result_is_nullable) { | 276 | 7 | if (attr.enable_aggregate_function_null_v2) { | 277 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7 | AggregateFunctionTemplate>( | 279 | 7 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 692 | [&](auto result_is_nullable) { | 276 | 692 | if (attr.enable_aggregate_function_null_v2) { | 277 | 49 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 49 | AggregateFunctionTemplate>( | 279 | 49 | result.release(), argument_types_, attr.is_window_function)); | 280 | 643 | } else { | 281 | 643 | result.reset(new NullableT<false, result_is_nullable, | 282 | 643 | AggregateFunctionTemplate>( | 283 | 643 | result.release(), argument_types_, attr.is_window_function)); | 284 | 643 | } | 285 | 692 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 64 | [&](auto result_is_nullable) { | 276 | 64 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 40 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 64 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 7 | [&](auto result_is_nullable) { | 276 | 7 | if (attr.enable_aggregate_function_null_v2) { | 277 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7 | AggregateFunctionTemplate>( | 279 | 7 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 1.42k | [&](auto result_is_nullable) { | 276 | 1.42k | if (attr.enable_aggregate_function_null_v2) { | 277 | 283 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 283 | AggregateFunctionTemplate>( | 279 | 283 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.14k | } else { | 281 | 1.14k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.14k | AggregateFunctionTemplate>( | 283 | 1.14k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.14k | } | 285 | 1.42k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4.12k | [&](auto result_is_nullable) { | 276 | 4.12k | if (attr.enable_aggregate_function_null_v2) { | 277 | 4.09k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4.09k | AggregateFunctionTemplate>( | 279 | 4.09k | result.release(), argument_types_, attr.is_window_function)); | 280 | 4.09k | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 4.12k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.64k | [&](auto result_is_nullable) { | 276 | 1.64k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.49k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.49k | AggregateFunctionTemplate>( | 279 | 1.49k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.49k | } else { | 281 | 145 | result.reset(new NullableT<false, result_is_nullable, | 282 | 145 | AggregateFunctionTemplate>( | 283 | 145 | result.release(), argument_types_, attr.is_window_function)); | 284 | 145 | } | 285 | 1.64k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.03k | [&](auto result_is_nullable) { | 276 | 1.03k | if (attr.enable_aggregate_function_null_v2) { | 277 | 870 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 870 | AggregateFunctionTemplate>( | 279 | 870 | result.release(), argument_types_, attr.is_window_function)); | 280 | 870 | } else { | 281 | 163 | result.reset(new NullableT<false, result_is_nullable, | 282 | 163 | AggregateFunctionTemplate>( | 283 | 163 | result.release(), argument_types_, attr.is_window_function)); | 284 | 163 | } | 285 | 1.03k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.49k | } else { | 281 | 1.49k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.49k | AggregateFunctionTemplate>( | 283 | 1.49k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.49k | } | 285 | 1.50k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 247 | [&](auto result_is_nullable) { | 276 | 247 | if (attr.enable_aggregate_function_null_v2) { | 277 | 184 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 184 | AggregateFunctionTemplate>( | 279 | 184 | result.release(), argument_types_, attr.is_window_function)); | 280 | 184 | } else { | 281 | 63 | result.reset(new NullableT<false, result_is_nullable, | 282 | 63 | AggregateFunctionTemplate>( | 283 | 63 | result.release(), argument_types_, attr.is_window_function)); | 284 | 63 | } | 285 | 247 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 657 | [&](auto result_is_nullable) { | 276 | 657 | if (attr.enable_aggregate_function_null_v2) { | 277 | 375 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 375 | AggregateFunctionTemplate>( | 279 | 375 | result.release(), argument_types_, attr.is_window_function)); | 280 | 375 | } else { | 281 | 282 | result.reset(new NullableT<false, result_is_nullable, | 282 | 282 | AggregateFunctionTemplate>( | 283 | 282 | result.release(), argument_types_, attr.is_window_function)); | 284 | 282 | } | 285 | 657 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 705 | [&](auto result_is_nullable) { | 276 | 705 | if (attr.enable_aggregate_function_null_v2) { | 277 | 513 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 513 | AggregateFunctionTemplate>( | 279 | 513 | result.release(), argument_types_, attr.is_window_function)); | 280 | 513 | } else { | 281 | 192 | result.reset(new NullableT<false, result_is_nullable, | 282 | 192 | AggregateFunctionTemplate>( | 283 | 192 | result.release(), argument_types_, attr.is_window_function)); | 284 | 192 | } | 285 | 705 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 7.82k | [&](auto result_is_nullable) { | 276 | 7.82k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6.94k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6.94k | AggregateFunctionTemplate>( | 279 | 6.94k | result.release(), argument_types_, attr.is_window_function)); | 280 | 6.94k | } else { | 281 | 879 | result.reset(new NullableT<false, result_is_nullable, | 282 | 879 | AggregateFunctionTemplate>( | 283 | 879 | result.release(), argument_types_, attr.is_window_function)); | 284 | 879 | } | 285 | 7.82k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2.37k | [&](auto result_is_nullable) { | 276 | 2.37k | if (attr.enable_aggregate_function_null_v2) { | 277 | 2.12k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2.12k | AggregateFunctionTemplate>( | 279 | 2.12k | result.release(), argument_types_, attr.is_window_function)); | 280 | 2.12k | } else { | 281 | 252 | result.reset(new NullableT<false, result_is_nullable, | 282 | 252 | AggregateFunctionTemplate>( | 283 | 252 | result.release(), argument_types_, attr.is_window_function)); | 284 | 252 | } | 285 | 2.37k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 575 | [&](auto result_is_nullable) { | 276 | 575 | if (attr.enable_aggregate_function_null_v2) { | 277 | 305 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 305 | AggregateFunctionTemplate>( | 279 | 305 | result.release(), argument_types_, attr.is_window_function)); | 280 | 305 | } else { | 281 | 270 | result.reset(new NullableT<false, result_is_nullable, | 282 | 270 | AggregateFunctionTemplate>( | 283 | 270 | result.release(), argument_types_, attr.is_window_function)); | 284 | 270 | } | 285 | 575 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 485 | [&](auto result_is_nullable) { | 276 | 485 | if (attr.enable_aggregate_function_null_v2) { | 277 | 296 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 296 | AggregateFunctionTemplate>( | 279 | 296 | result.release(), argument_types_, attr.is_window_function)); | 280 | 296 | } else { | 281 | 189 | result.reset(new NullableT<false, result_is_nullable, | 282 | 189 | AggregateFunctionTemplate>( | 283 | 189 | result.release(), argument_types_, attr.is_window_function)); | 284 | 189 | } | 285 | 485 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.00k | [&](auto result_is_nullable) { | 276 | 1.00k | if (attr.enable_aggregate_function_null_v2) { | 277 | 500 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 500 | AggregateFunctionTemplate>( | 279 | 500 | result.release(), argument_types_, attr.is_window_function)); | 280 | 505 | } else { | 281 | 505 | result.reset(new NullableT<false, result_is_nullable, | 282 | 505 | AggregateFunctionTemplate>( | 283 | 505 | result.release(), argument_types_, attr.is_window_function)); | 284 | 505 | } | 285 | 1.00k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 290 | [&](auto result_is_nullable) { | 276 | 290 | if (attr.enable_aggregate_function_null_v2) { | 277 | 236 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 236 | AggregateFunctionTemplate>( | 279 | 236 | result.release(), argument_types_, attr.is_window_function)); | 280 | 236 | } else { | 281 | 54 | result.reset(new NullableT<false, result_is_nullable, | 282 | 54 | AggregateFunctionTemplate>( | 283 | 54 | result.release(), argument_types_, attr.is_window_function)); | 284 | 54 | } | 285 | 290 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.67k | [&](auto result_is_nullable) { | 276 | 1.67k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.61k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.61k | AggregateFunctionTemplate>( | 279 | 1.61k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.61k | } else { | 281 | 63 | result.reset(new NullableT<false, result_is_nullable, | 282 | 63 | AggregateFunctionTemplate>( | 283 | 63 | result.release(), argument_types_, attr.is_window_function)); | 284 | 63 | } | 285 | 1.67k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 603 | [&](auto result_is_nullable) { | 276 | 603 | if (attr.enable_aggregate_function_null_v2) { | 277 | 560 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 560 | AggregateFunctionTemplate>( | 279 | 560 | result.release(), argument_types_, attr.is_window_function)); | 280 | 560 | } else { | 281 | 43 | result.reset(new NullableT<false, result_is_nullable, | 282 | 43 | AggregateFunctionTemplate>( | 283 | 43 | result.release(), argument_types_, attr.is_window_function)); | 284 | 43 | } | 285 | 603 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 36 | [&](auto result_is_nullable) { | 276 | 36 | if (attr.enable_aggregate_function_null_v2) { | 277 | 23 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 23 | AggregateFunctionTemplate>( | 279 | 23 | result.release(), argument_types_, attr.is_window_function)); | 280 | 23 | } else { | 281 | 13 | result.reset(new NullableT<false, result_is_nullable, | 282 | 13 | AggregateFunctionTemplate>( | 283 | 13 | result.release(), argument_types_, attr.is_window_function)); | 284 | 13 | } | 285 | 36 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 3.19k | [&](auto result_is_nullable) { | 276 | 3.19k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.17k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.17k | AggregateFunctionTemplate>( | 279 | 3.17k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.17k | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 3.19k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.33k | [&](auto result_is_nullable) { | 276 | 1.33k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.28k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.28k | AggregateFunctionTemplate>( | 279 | 1.28k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.28k | } else { | 281 | 50 | result.reset(new NullableT<false, result_is_nullable, | 282 | 50 | AggregateFunctionTemplate>( | 283 | 50 | result.release(), argument_types_, attr.is_window_function)); | 284 | 50 | } | 285 | 1.33k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 689 | [&](auto result_is_nullable) { | 276 | 689 | if (attr.enable_aggregate_function_null_v2) { | 277 | 630 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 630 | AggregateFunctionTemplate>( | 279 | 630 | result.release(), argument_types_, attr.is_window_function)); | 280 | 630 | } else { | 281 | 59 | result.reset(new NullableT<false, result_is_nullable, | 282 | 59 | AggregateFunctionTemplate>( | 283 | 59 | result.release(), argument_types_, attr.is_window_function)); | 284 | 59 | } | 285 | 689 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.49k | } else { | 281 | 1.49k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.49k | AggregateFunctionTemplate>( | 283 | 1.49k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.49k | } | 285 | 1.50k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 157 | [&](auto result_is_nullable) { | 276 | 157 | if (attr.enable_aggregate_function_null_v2) { | 277 | 118 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 118 | AggregateFunctionTemplate>( | 279 | 118 | result.release(), argument_types_, attr.is_window_function)); | 280 | 118 | } else { | 281 | 39 | result.reset(new NullableT<false, result_is_nullable, | 282 | 39 | AggregateFunctionTemplate>( | 283 | 39 | result.release(), argument_types_, attr.is_window_function)); | 284 | 39 | } | 285 | 157 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 397 | [&](auto result_is_nullable) { | 276 | 397 | if (attr.enable_aggregate_function_null_v2) { | 277 | 299 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 299 | AggregateFunctionTemplate>( | 279 | 299 | result.release(), argument_types_, attr.is_window_function)); | 280 | 299 | } else { | 281 | 98 | result.reset(new NullableT<false, result_is_nullable, | 282 | 98 | AggregateFunctionTemplate>( | 283 | 98 | result.release(), argument_types_, attr.is_window_function)); | 284 | 98 | } | 285 | 397 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 417 | [&](auto result_is_nullable) { | 276 | 417 | if (attr.enable_aggregate_function_null_v2) { | 277 | 333 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 333 | AggregateFunctionTemplate>( | 279 | 333 | result.release(), argument_types_, attr.is_window_function)); | 280 | 333 | } else { | 281 | 84 | result.reset(new NullableT<false, result_is_nullable, | 282 | 84 | AggregateFunctionTemplate>( | 283 | 84 | result.release(), argument_types_, attr.is_window_function)); | 284 | 84 | } | 285 | 417 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 6.63k | [&](auto result_is_nullable) { | 276 | 6.63k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6.25k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6.25k | AggregateFunctionTemplate>( | 279 | 6.25k | result.release(), argument_types_, attr.is_window_function)); | 280 | 6.25k | } else { | 281 | 389 | result.reset(new NullableT<false, result_is_nullable, | 282 | 389 | AggregateFunctionTemplate>( | 283 | 389 | result.release(), argument_types_, attr.is_window_function)); | 284 | 389 | } | 285 | 6.63k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.80k | [&](auto result_is_nullable) { | 276 | 1.80k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.71k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.71k | AggregateFunctionTemplate>( | 279 | 1.71k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.71k | } else { | 281 | 87 | result.reset(new NullableT<false, result_is_nullable, | 282 | 87 | AggregateFunctionTemplate>( | 283 | 87 | result.release(), argument_types_, attr.is_window_function)); | 284 | 87 | } | 285 | 1.80k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 267 | [&](auto result_is_nullable) { | 276 | 267 | if (attr.enable_aggregate_function_null_v2) { | 277 | 229 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 229 | AggregateFunctionTemplate>( | 279 | 229 | result.release(), argument_types_, attr.is_window_function)); | 280 | 229 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 267 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 260 | [&](auto result_is_nullable) { | 276 | 260 | if (attr.enable_aggregate_function_null_v2) { | 277 | 200 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 200 | AggregateFunctionTemplate>( | 279 | 200 | result.release(), argument_types_, attr.is_window_function)); | 280 | 200 | } else { | 281 | 60 | result.reset(new NullableT<false, result_is_nullable, | 282 | 60 | AggregateFunctionTemplate>( | 283 | 60 | result.release(), argument_types_, attr.is_window_function)); | 284 | 60 | } | 285 | 260 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 374 | [&](auto result_is_nullable) { | 276 | 374 | if (attr.enable_aggregate_function_null_v2) { | 277 | 336 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 336 | AggregateFunctionTemplate>( | 279 | 336 | result.release(), argument_types_, attr.is_window_function)); | 280 | 336 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 374 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 200 | [&](auto result_is_nullable) { | 276 | 200 | if (attr.enable_aggregate_function_null_v2) { | 277 | 182 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 182 | AggregateFunctionTemplate>( | 279 | 182 | result.release(), argument_types_, attr.is_window_function)); | 280 | 182 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 200 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.48k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.48k | AggregateFunctionTemplate>( | 279 | 1.48k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.48k | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 1.50k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 514 | [&](auto result_is_nullable) { | 276 | 514 | if (attr.enable_aggregate_function_null_v2) { | 277 | 474 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 474 | AggregateFunctionTemplate>( | 279 | 474 | result.release(), argument_types_, attr.is_window_function)); | 280 | 474 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 514 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 36 | [&](auto result_is_nullable) { | 276 | 36 | if (attr.enable_aggregate_function_null_v2) { | 277 | 23 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 23 | AggregateFunctionTemplate>( | 279 | 23 | result.release(), argument_types_, attr.is_window_function)); | 280 | 23 | } else { | 281 | 13 | result.reset(new NullableT<false, result_is_nullable, | 282 | 13 | AggregateFunctionTemplate>( | 283 | 13 | result.release(), argument_types_, attr.is_window_function)); | 284 | 13 | } | 285 | 36 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 116 | [&](auto result_is_nullable) { | 276 | 116 | if (attr.enable_aggregate_function_null_v2) { | 277 | 116 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 116 | AggregateFunctionTemplate>( | 279 | 116 | result.release(), argument_types_, attr.is_window_function)); | 280 | 116 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 116 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 10 | [&](auto result_is_nullable) { | 276 | 10 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 10 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 14 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 16 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 535 | [&](auto result_is_nullable) { | 276 | 535 | if (attr.enable_aggregate_function_null_v2) { | 277 | 122 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 122 | AggregateFunctionTemplate>( | 279 | 122 | result.release(), argument_types_, attr.is_window_function)); | 280 | 413 | } else { | 281 | 413 | result.reset(new NullableT<false, result_is_nullable, | 282 | 413 | AggregateFunctionTemplate>( | 283 | 413 | result.release(), argument_types_, attr.is_window_function)); | 284 | 413 | } | 285 | 535 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 22 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 79 | [&](auto result_is_nullable) { | 276 | 79 | if (attr.enable_aggregate_function_null_v2) { | 277 | 75 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 75 | AggregateFunctionTemplate>( | 279 | 75 | result.release(), argument_types_, attr.is_window_function)); | 280 | 75 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 79 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 8 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 181 | [&](auto result_is_nullable) { | 276 | 181 | if (attr.enable_aggregate_function_null_v2) { | 277 | 180 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 180 | AggregateFunctionTemplate>( | 279 | 180 | result.release(), argument_types_, attr.is_window_function)); | 280 | 180 | } else { | 281 | 1 | result.reset(new NullableT<false, result_is_nullable, | 282 | 1 | AggregateFunctionTemplate>( | 283 | 1 | result.release(), argument_types_, attr.is_window_function)); | 284 | 1 | } | 285 | 181 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 7 | } else { | 281 | 7 | result.reset(new NullableT<false, result_is_nullable, | 282 | 7 | AggregateFunctionTemplate>( | 283 | 7 | result.release(), argument_types_, attr.is_window_function)); | 284 | 7 | } | 285 | 9 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 94 | [&](auto result_is_nullable) { | 276 | 94 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 73 | } else { | 281 | 73 | result.reset(new NullableT<false, result_is_nullable, | 282 | 73 | AggregateFunctionTemplate>( | 283 | 73 | result.release(), argument_types_, attr.is_window_function)); | 284 | 73 | } | 285 | 94 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 24 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 98 | [&](auto result_is_nullable) { | 276 | 98 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 76 | } else { | 281 | 76 | result.reset(new NullableT<false, result_is_nullable, | 282 | 76 | AggregateFunctionTemplate>( | 283 | 76 | result.release(), argument_types_, attr.is_window_function)); | 284 | 76 | } | 285 | 98 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 30 | [&](auto result_is_nullable) { | 276 | 30 | if (attr.enable_aggregate_function_null_v2) { | 277 | 30 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 30 | AggregateFunctionTemplate>( | 279 | 30 | result.release(), argument_types_, attr.is_window_function)); | 280 | 30 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 30 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 21 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 482 | [&](auto result_is_nullable) { | 276 | 482 | if (attr.enable_aggregate_function_null_v2) { | 277 | 140 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 140 | AggregateFunctionTemplate>( | 279 | 140 | result.release(), argument_types_, attr.is_window_function)); | 280 | 342 | } else { | 281 | 342 | result.reset(new NullableT<false, result_is_nullable, | 282 | 342 | AggregateFunctionTemplate>( | 283 | 342 | result.release(), argument_types_, attr.is_window_function)); | 284 | 342 | } | 285 | 482 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 356 | [&](auto result_is_nullable) { | 276 | 356 | if (attr.enable_aggregate_function_null_v2) { | 277 | 52 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 52 | AggregateFunctionTemplate>( | 279 | 52 | result.release(), argument_types_, attr.is_window_function)); | 280 | 304 | } else { | 281 | 304 | result.reset(new NullableT<false, result_is_nullable, | 282 | 304 | AggregateFunctionTemplate>( | 283 | 304 | result.release(), argument_types_, attr.is_window_function)); | 284 | 304 | } | 285 | 356 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 264 | [&](auto result_is_nullable) { | 276 | 264 | if (attr.enable_aggregate_function_null_v2) { | 277 | 195 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 195 | AggregateFunctionTemplate>( | 279 | 195 | result.release(), argument_types_, attr.is_window_function)); | 280 | 195 | } else { | 281 | 69 | result.reset(new NullableT<false, result_is_nullable, | 282 | 69 | AggregateFunctionTemplate>( | 283 | 69 | result.release(), argument_types_, attr.is_window_function)); | 284 | 69 | } | 285 | 264 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 3 | result.reset(new NullableT<false, result_is_nullable, | 282 | 3 | AggregateFunctionTemplate>( | 283 | 3 | result.release(), argument_types_, attr.is_window_function)); | 284 | 3 | } | 285 | 21 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 438 | [&](auto result_is_nullable) { | 276 | 438 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 412 | } else { | 281 | 412 | result.reset(new NullableT<false, result_is_nullable, | 282 | 412 | AggregateFunctionTemplate>( | 283 | 412 | result.release(), argument_types_, attr.is_window_function)); | 284 | 412 | } | 285 | 438 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 19 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 438 | [&](auto result_is_nullable) { | 276 | 438 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 412 | } else { | 281 | 412 | result.reset(new NullableT<false, result_is_nullable, | 282 | 412 | AggregateFunctionTemplate>( | 283 | 412 | result.release(), argument_types_, attr.is_window_function)); | 284 | 412 | } | 285 | 438 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 19 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 18 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 438 | [&](auto result_is_nullable) { | 276 | 438 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 412 | } else { | 281 | 412 | result.reset(new NullableT<false, result_is_nullable, | 282 | 412 | AggregateFunctionTemplate>( | 283 | 412 | result.release(), argument_types_, attr.is_window_function)); | 284 | 412 | } | 285 | 438 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 19 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 20 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 12 | [&](auto result_is_nullable) { | 276 | 12 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 12 | } else { | 281 | 12 | result.reset(new NullableT<false, result_is_nullable, | 282 | 12 | AggregateFunctionTemplate>( | 283 | 12 | result.release(), argument_types_, attr.is_window_function)); | 284 | 12 | } | 285 | 12 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 474 | [&](auto result_is_nullable) { | 276 | 474 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 474 | } else { | 281 | 474 | result.reset(new NullableT<false, result_is_nullable, | 282 | 474 | AggregateFunctionTemplate>( | 283 | 474 | result.release(), argument_types_, attr.is_window_function)); | 284 | 474 | } | 285 | 474 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 532 | [&](auto result_is_nullable) { | 276 | 532 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 532 | } else { | 281 | 532 | result.reset(new NullableT<false, result_is_nullable, | 282 | 532 | AggregateFunctionTemplate>( | 283 | 532 | result.release(), argument_types_, attr.is_window_function)); | 284 | 532 | } | 285 | 532 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 618 | [&](auto result_is_nullable) { | 276 | 618 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 618 | } else { | 281 | 618 | result.reset(new NullableT<false, result_is_nullable, | 282 | 618 | AggregateFunctionTemplate>( | 283 | 618 | result.release(), argument_types_, attr.is_window_function)); | 284 | 618 | } | 285 | 618 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 586 | [&](auto result_is_nullable) { | 276 | 586 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 586 | } else { | 281 | 586 | result.reset(new NullableT<false, result_is_nullable, | 282 | 586 | AggregateFunctionTemplate>( | 283 | 586 | result.release(), argument_types_, attr.is_window_function)); | 284 | 586 | } | 285 | 586 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 987 | [&](auto result_is_nullable) { | 276 | 987 | if (attr.enable_aggregate_function_null_v2) { | 277 | 124 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 124 | AggregateFunctionTemplate>( | 279 | 124 | result.release(), argument_types_, attr.is_window_function)); | 280 | 863 | } else { | 281 | 863 | result.reset(new NullableT<false, result_is_nullable, | 282 | 863 | AggregateFunctionTemplate>( | 283 | 863 | result.release(), argument_types_, attr.is_window_function)); | 284 | 863 | } | 285 | 987 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 1.02k | [&](auto result_is_nullable) { | 276 | 1.02k | if (attr.enable_aggregate_function_null_v2) { | 277 | 161 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 161 | AggregateFunctionTemplate>( | 279 | 161 | result.release(), argument_types_, attr.is_window_function)); | 280 | 866 | } else { | 281 | 866 | result.reset(new NullableT<false, result_is_nullable, | 282 | 866 | AggregateFunctionTemplate>( | 283 | 866 | result.release(), argument_types_, attr.is_window_function)); | 284 | 866 | } | 285 | 1.02k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 1.00k | [&](auto result_is_nullable) { | 276 | 1.00k | if (attr.enable_aggregate_function_null_v2) { | 277 | 140 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 140 | AggregateFunctionTemplate>( | 279 | 140 | result.release(), argument_types_, attr.is_window_function)); | 280 | 866 | } else { | 281 | 866 | result.reset(new NullableT<false, result_is_nullable, | 282 | 866 | AggregateFunctionTemplate>( | 283 | 866 | result.release(), argument_types_, attr.is_window_function)); | 284 | 866 | } | 285 | 1.00k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSP_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSP_ Line | Count | Source | 275 | 532 | [&](auto result_is_nullable) { | 276 | 532 | if (attr.enable_aggregate_function_null_v2) { | 277 | 121 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 121 | AggregateFunctionTemplate>( | 279 | 121 | result.release(), argument_types_, attr.is_window_function)); | 280 | 411 | } else { | 281 | 411 | result.reset(new NullableT<false, result_is_nullable, | 282 | 411 | AggregateFunctionTemplate>( | 283 | 411 | result.release(), argument_types_, attr.is_window_function)); | 284 | 411 | } | 285 | 532 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSN_ Line | Count | Source | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSN_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 275 | 85 | [&](auto result_is_nullable) { | 276 | 85 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 81 | } else { | 281 | 81 | result.reset(new NullableT<false, result_is_nullable, | 282 | 81 | AggregateFunctionTemplate>( | 283 | 81 | result.release(), argument_types_, attr.is_window_function)); | 284 | 81 | } | 285 | 85 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 5 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 21 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 50 | [&](auto result_is_nullable) { | 276 | 50 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 50 | } else { | 281 | 50 | result.reset(new NullableT<false, result_is_nullable, | 282 | 50 | AggregateFunctionTemplate>( | 283 | 50 | result.release(), argument_types_, attr.is_window_function)); | 284 | 50 | } | 285 | 50 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 46 | [&](auto result_is_nullable) { | 276 | 46 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 46 | } else { | 281 | 46 | result.reset(new NullableT<false, result_is_nullable, | 282 | 46 | AggregateFunctionTemplate>( | 283 | 46 | result.release(), argument_types_, attr.is_window_function)); | 284 | 46 | } | 285 | 46 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 42 | [&](auto result_is_nullable) { | 276 | 42 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 42 | } else { | 281 | 42 | result.reset(new NullableT<false, result_is_nullable, | 282 | 42 | AggregateFunctionTemplate>( | 283 | 42 | result.release(), argument_types_, attr.is_window_function)); | 284 | 42 | } | 285 | 42 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 22 | result.reset(new NullableT<false, result_is_nullable, | 282 | 22 | AggregateFunctionTemplate>( | 283 | 22 | result.release(), argument_types_, attr.is_window_function)); | 284 | 22 | } | 285 | 22 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 48 | [&](auto result_is_nullable) { | 276 | 48 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 48 | } else { | 281 | 48 | result.reset(new NullableT<false, result_is_nullable, | 282 | 48 | AggregateFunctionTemplate>( | 283 | 48 | result.release(), argument_types_, attr.is_window_function)); | 284 | 48 | } | 285 | 48 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 24 | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 24 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 40 | [&](auto result_is_nullable) { | 276 | 40 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 40 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 40 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 275 | 125 | [&](auto result_is_nullable) { | 276 | 125 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 125 | } else { | 281 | 125 | result.reset(new NullableT<false, result_is_nullable, | 282 | 125 | AggregateFunctionTemplate>( | 283 | 125 | result.release(), argument_types_, attr.is_window_function)); | 284 | 125 | } | 285 | 125 | }, |
|
286 | 67.8k | make_bool_variant(result_is_nullable)); |
287 | 67.8k | } |
288 | 117k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
289 | 117k | return AggregateFunctionPtr(result.release()); |
290 | 117k | } _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 894 | TArgs&&... args) { | 267 | 894 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 894 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 894 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 894 | if (have_nullable(argument_types_)) { | 274 | 893 | std::visit( | 275 | 893 | [&](auto result_is_nullable) { | 276 | 893 | if (attr.enable_aggregate_function_null_v2) { | 277 | 893 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 893 | AggregateFunctionTemplate>( | 279 | 893 | result.release(), argument_types_, attr.is_window_function)); | 280 | 893 | } else { | 281 | 893 | result.reset(new NullableT<false, result_is_nullable, | 282 | 893 | AggregateFunctionTemplate>( | 283 | 893 | result.release(), argument_types_, attr.is_window_function)); | 284 | 893 | } | 285 | 893 | }, | 286 | 893 | make_bool_variant(result_is_nullable)); | 287 | 893 | } | 288 | 894 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 894 | return AggregateFunctionPtr(result.release()); | 290 | 894 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 123 | TArgs&&... args) { | 267 | 123 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 123 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 123 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 123 | if (have_nullable(argument_types_)) { | 274 | 111 | std::visit( | 275 | 111 | [&](auto result_is_nullable) { | 276 | 111 | if (attr.enable_aggregate_function_null_v2) { | 277 | 111 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 111 | AggregateFunctionTemplate>( | 279 | 111 | result.release(), argument_types_, attr.is_window_function)); | 280 | 111 | } else { | 281 | 111 | result.reset(new NullableT<false, result_is_nullable, | 282 | 111 | AggregateFunctionTemplate>( | 283 | 111 | result.release(), argument_types_, attr.is_window_function)); | 284 | 111 | } | 285 | 111 | }, | 286 | 111 | make_bool_variant(result_is_nullable)); | 287 | 111 | } | 288 | 123 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 123 | return AggregateFunctionPtr(result.release()); | 290 | 123 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionSumDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 30 | TArgs&&... args) { | 267 | 30 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 30 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 30 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 30 | if (have_nullable(argument_types_)) { | 274 | 26 | std::visit( | 275 | 26 | [&](auto result_is_nullable) { | 276 | 26 | if (attr.enable_aggregate_function_null_v2) { | 277 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 26 | AggregateFunctionTemplate>( | 279 | 26 | result.release(), argument_types_, attr.is_window_function)); | 280 | 26 | } else { | 281 | 26 | result.reset(new NullableT<false, result_is_nullable, | 282 | 26 | AggregateFunctionTemplate>( | 283 | 26 | result.release(), argument_types_, attr.is_window_function)); | 284 | 26 | } | 285 | 26 | }, | 286 | 26 | make_bool_variant(result_is_nullable)); | 287 | 26 | } | 288 | 30 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 30 | return AggregateFunctionPtr(result.release()); | 290 | 30 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.24k | TArgs&&... args) { | 267 | 1.24k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.24k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.24k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.24k | if (have_nullable(argument_types_)) { | 274 | 719 | std::visit( | 275 | 719 | [&](auto result_is_nullable) { | 276 | 719 | if (attr.enable_aggregate_function_null_v2) { | 277 | 719 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 719 | AggregateFunctionTemplate>( | 279 | 719 | result.release(), argument_types_, attr.is_window_function)); | 280 | 719 | } else { | 281 | 719 | result.reset(new NullableT<false, result_is_nullable, | 282 | 719 | AggregateFunctionTemplate>( | 283 | 719 | result.release(), argument_types_, attr.is_window_function)); | 284 | 719 | } | 285 | 719 | }, | 286 | 719 | make_bool_variant(result_is_nullable)); | 287 | 719 | } | 288 | 1.24k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.24k | return AggregateFunctionPtr(result.release()); | 290 | 1.24k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 18 | TArgs&&... args) { | 267 | 18 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 18 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 18 | return AggregateFunctionPtr(result.release()); | 290 | 18 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.17k | TArgs&&... args) { | 267 | 2.17k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.17k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.17k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.17k | if (have_nullable(argument_types_)) { | 274 | 550 | std::visit( | 275 | 550 | [&](auto result_is_nullable) { | 276 | 550 | if (attr.enable_aggregate_function_null_v2) { | 277 | 550 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 550 | AggregateFunctionTemplate>( | 279 | 550 | result.release(), argument_types_, attr.is_window_function)); | 280 | 550 | } else { | 281 | 550 | result.reset(new NullableT<false, result_is_nullable, | 282 | 550 | AggregateFunctionTemplate>( | 283 | 550 | result.release(), argument_types_, attr.is_window_function)); | 284 | 550 | } | 285 | 550 | }, | 286 | 550 | make_bool_variant(result_is_nullable)); | 287 | 550 | } | 288 | 2.17k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.17k | return AggregateFunctionPtr(result.release()); | 290 | 2.17k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 5 | TArgs&&... args) { | 267 | 5 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 5 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 5 | return AggregateFunctionPtr(result.release()); | 290 | 5 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 159 | TArgs&&... args) { | 267 | 159 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 159 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 159 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 159 | if (have_nullable(argument_types_)) { | 274 | 144 | std::visit( | 275 | 144 | [&](auto result_is_nullable) { | 276 | 144 | if (attr.enable_aggregate_function_null_v2) { | 277 | 144 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 144 | AggregateFunctionTemplate>( | 279 | 144 | result.release(), argument_types_, attr.is_window_function)); | 280 | 144 | } else { | 281 | 144 | result.reset(new NullableT<false, result_is_nullable, | 282 | 144 | AggregateFunctionTemplate>( | 283 | 144 | result.release(), argument_types_, attr.is_window_function)); | 284 | 144 | } | 285 | 144 | }, | 286 | 144 | make_bool_variant(result_is_nullable)); | 287 | 144 | } | 288 | 159 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 159 | return AggregateFunctionPtr(result.release()); | 290 | 159 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.78k | TArgs&&... args) { | 267 | 3.78k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.78k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.78k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.78k | if (have_nullable(argument_types_)) { | 274 | 136 | std::visit( | 275 | 136 | [&](auto result_is_nullable) { | 276 | 136 | if (attr.enable_aggregate_function_null_v2) { | 277 | 136 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 136 | AggregateFunctionTemplate>( | 279 | 136 | result.release(), argument_types_, attr.is_window_function)); | 280 | 136 | } else { | 281 | 136 | result.reset(new NullableT<false, result_is_nullable, | 282 | 136 | AggregateFunctionTemplate>( | 283 | 136 | result.release(), argument_types_, attr.is_window_function)); | 284 | 136 | } | 285 | 136 | }, | 286 | 136 | make_bool_variant(result_is_nullable)); | 287 | 136 | } | 288 | 3.78k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.78k | return AggregateFunctionPtr(result.release()); | 290 | 3.78k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 75 | TArgs&&... args) { | 267 | 75 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 75 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 75 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 75 | if (have_nullable(argument_types_)) { | 274 | 60 | std::visit( | 275 | 60 | [&](auto result_is_nullable) { | 276 | 60 | if (attr.enable_aggregate_function_null_v2) { | 277 | 60 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 60 | AggregateFunctionTemplate>( | 279 | 60 | result.release(), argument_types_, attr.is_window_function)); | 280 | 60 | } else { | 281 | 60 | result.reset(new NullableT<false, result_is_nullable, | 282 | 60 | AggregateFunctionTemplate>( | 283 | 60 | result.release(), argument_types_, attr.is_window_function)); | 284 | 60 | } | 285 | 60 | }, | 286 | 60 | make_bool_variant(result_is_nullable)); | 287 | 60 | } | 288 | 75 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 75 | return AggregateFunctionPtr(result.release()); | 290 | 75 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8.48k | TArgs&&... args) { | 267 | 8.48k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8.48k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8.48k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8.48k | if (have_nullable(argument_types_)) { | 274 | 5.20k | std::visit( | 275 | 5.20k | [&](auto result_is_nullable) { | 276 | 5.20k | if (attr.enable_aggregate_function_null_v2) { | 277 | 5.20k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5.20k | AggregateFunctionTemplate>( | 279 | 5.20k | result.release(), argument_types_, attr.is_window_function)); | 280 | 5.20k | } else { | 281 | 5.20k | result.reset(new NullableT<false, result_is_nullable, | 282 | 5.20k | AggregateFunctionTemplate>( | 283 | 5.20k | result.release(), argument_types_, attr.is_window_function)); | 284 | 5.20k | } | 285 | 5.20k | }, | 286 | 5.20k | make_bool_variant(result_is_nullable)); | 287 | 5.20k | } | 288 | 8.48k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8.48k | return AggregateFunctionPtr(result.release()); | 290 | 8.48k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6.38k | TArgs&&... args) { | 267 | 6.38k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6.38k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6.38k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6.38k | if (have_nullable(argument_types_)) { | 274 | 3.26k | std::visit( | 275 | 3.26k | [&](auto result_is_nullable) { | 276 | 3.26k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.26k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.26k | AggregateFunctionTemplate>( | 279 | 3.26k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.26k | } else { | 281 | 3.26k | result.reset(new NullableT<false, result_is_nullable, | 282 | 3.26k | AggregateFunctionTemplate>( | 283 | 3.26k | result.release(), argument_types_, attr.is_window_function)); | 284 | 3.26k | } | 285 | 3.26k | }, | 286 | 3.26k | make_bool_variant(result_is_nullable)); | 287 | 3.26k | } | 288 | 6.38k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6.38k | return AggregateFunctionPtr(result.release()); | 290 | 6.38k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.19k | TArgs&&... args) { | 267 | 1.19k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.19k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.19k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.19k | if (have_nullable(argument_types_)) { | 274 | 699 | std::visit( | 275 | 699 | [&](auto result_is_nullable) { | 276 | 699 | if (attr.enable_aggregate_function_null_v2) { | 277 | 699 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 699 | AggregateFunctionTemplate>( | 279 | 699 | result.release(), argument_types_, attr.is_window_function)); | 280 | 699 | } else { | 281 | 699 | result.reset(new NullableT<false, result_is_nullable, | 282 | 699 | AggregateFunctionTemplate>( | 283 | 699 | result.release(), argument_types_, attr.is_window_function)); | 284 | 699 | } | 285 | 699 | }, | 286 | 699 | make_bool_variant(result_is_nullable)); | 287 | 699 | } | 288 | 1.19k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.19k | return AggregateFunctionPtr(result.release()); | 290 | 1.19k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 64 | TArgs&&... args) { | 267 | 64 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 64 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 64 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 64 | if (have_nullable(argument_types_)) { | 274 | 64 | std::visit( | 275 | 64 | [&](auto result_is_nullable) { | 276 | 64 | if (attr.enable_aggregate_function_null_v2) { | 277 | 64 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 64 | AggregateFunctionTemplate>( | 279 | 64 | result.release(), argument_types_, attr.is_window_function)); | 280 | 64 | } else { | 281 | 64 | result.reset(new NullableT<false, result_is_nullable, | 282 | 64 | AggregateFunctionTemplate>( | 283 | 64 | result.release(), argument_types_, attr.is_window_function)); | 284 | 64 | } | 285 | 64 | }, | 286 | 64 | make_bool_variant(result_is_nullable)); | 287 | 64 | } | 288 | 64 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 64 | return AggregateFunctionPtr(result.release()); | 290 | 64 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.30k | TArgs&&... args) { | 267 | 2.30k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.30k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.30k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.30k | if (have_nullable(argument_types_)) { | 274 | 1.43k | std::visit( | 275 | 1.43k | [&](auto result_is_nullable) { | 276 | 1.43k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.43k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.43k | AggregateFunctionTemplate>( | 279 | 1.43k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.43k | } else { | 281 | 1.43k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.43k | AggregateFunctionTemplate>( | 283 | 1.43k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.43k | } | 285 | 1.43k | }, | 286 | 1.43k | make_bool_variant(result_is_nullable)); | 287 | 1.43k | } | 288 | 2.30k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.30k | return AggregateFunctionPtr(result.release()); | 290 | 2.30k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6.52k | TArgs&&... args) { | 267 | 6.52k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6.52k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6.52k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6.52k | if (have_nullable(argument_types_)) { | 274 | 4.12k | std::visit( | 275 | 4.12k | [&](auto result_is_nullable) { | 276 | 4.12k | if (attr.enable_aggregate_function_null_v2) { | 277 | 4.12k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4.12k | AggregateFunctionTemplate>( | 279 | 4.12k | result.release(), argument_types_, attr.is_window_function)); | 280 | 4.12k | } else { | 281 | 4.12k | result.reset(new NullableT<false, result_is_nullable, | 282 | 4.12k | AggregateFunctionTemplate>( | 283 | 4.12k | result.release(), argument_types_, attr.is_window_function)); | 284 | 4.12k | } | 285 | 4.12k | }, | 286 | 4.12k | make_bool_variant(result_is_nullable)); | 287 | 4.12k | } | 288 | 6.52k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6.52k | return AggregateFunctionPtr(result.release()); | 290 | 6.52k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.98k | TArgs&&... args) { | 267 | 3.98k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.98k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.98k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.98k | if (have_nullable(argument_types_)) { | 274 | 1.64k | std::visit( | 275 | 1.64k | [&](auto result_is_nullable) { | 276 | 1.64k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.64k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.64k | AggregateFunctionTemplate>( | 279 | 1.64k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.64k | } else { | 281 | 1.64k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.64k | AggregateFunctionTemplate>( | 283 | 1.64k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.64k | } | 285 | 1.64k | }, | 286 | 1.64k | make_bool_variant(result_is_nullable)); | 287 | 1.64k | } | 288 | 3.98k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.98k | return AggregateFunctionPtr(result.release()); | 290 | 3.98k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.35k | TArgs&&... args) { | 267 | 1.35k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.35k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.35k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.35k | if (have_nullable(argument_types_)) { | 274 | 1.03k | std::visit( | 275 | 1.03k | [&](auto result_is_nullable) { | 276 | 1.03k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.03k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.03k | AggregateFunctionTemplate>( | 279 | 1.03k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.03k | } else { | 281 | 1.03k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.03k | AggregateFunctionTemplate>( | 283 | 1.03k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.03k | } | 285 | 1.03k | }, | 286 | 1.03k | make_bool_variant(result_is_nullable)); | 287 | 1.03k | } | 288 | 1.35k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.35k | return AggregateFunctionPtr(result.release()); | 290 | 1.35k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.50k | TArgs&&... args) { | 267 | 1.50k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.50k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.50k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.50k | if (have_nullable(argument_types_)) { | 274 | 1.50k | std::visit( | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.50k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.50k | AggregateFunctionTemplate>( | 279 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, | 286 | 1.50k | make_bool_variant(result_is_nullable)); | 287 | 1.50k | } | 288 | 1.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.50k | return AggregateFunctionPtr(result.release()); | 290 | 1.50k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 247 | TArgs&&... args) { | 267 | 247 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 247 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 247 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 247 | if (have_nullable(argument_types_)) { | 274 | 247 | std::visit( | 275 | 247 | [&](auto result_is_nullable) { | 276 | 247 | if (attr.enable_aggregate_function_null_v2) { | 277 | 247 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 247 | AggregateFunctionTemplate>( | 279 | 247 | result.release(), argument_types_, attr.is_window_function)); | 280 | 247 | } else { | 281 | 247 | result.reset(new NullableT<false, result_is_nullable, | 282 | 247 | AggregateFunctionTemplate>( | 283 | 247 | result.release(), argument_types_, attr.is_window_function)); | 284 | 247 | } | 285 | 247 | }, | 286 | 247 | make_bool_variant(result_is_nullable)); | 287 | 247 | } | 288 | 247 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 247 | return AggregateFunctionPtr(result.release()); | 290 | 247 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 952 | TArgs&&... args) { | 267 | 952 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 952 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 952 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 952 | if (have_nullable(argument_types_)) { | 274 | 657 | std::visit( | 275 | 657 | [&](auto result_is_nullable) { | 276 | 657 | if (attr.enable_aggregate_function_null_v2) { | 277 | 657 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 657 | AggregateFunctionTemplate>( | 279 | 657 | result.release(), argument_types_, attr.is_window_function)); | 280 | 657 | } else { | 281 | 657 | result.reset(new NullableT<false, result_is_nullable, | 282 | 657 | AggregateFunctionTemplate>( | 283 | 657 | result.release(), argument_types_, attr.is_window_function)); | 284 | 657 | } | 285 | 657 | }, | 286 | 657 | make_bool_variant(result_is_nullable)); | 287 | 657 | } | 288 | 952 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 952 | return AggregateFunctionPtr(result.release()); | 290 | 952 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 960 | TArgs&&... args) { | 267 | 960 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 960 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 960 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 960 | if (have_nullable(argument_types_)) { | 274 | 703 | std::visit( | 275 | 703 | [&](auto result_is_nullable) { | 276 | 703 | if (attr.enable_aggregate_function_null_v2) { | 277 | 703 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 703 | AggregateFunctionTemplate>( | 279 | 703 | result.release(), argument_types_, attr.is_window_function)); | 280 | 703 | } else { | 281 | 703 | result.reset(new NullableT<false, result_is_nullable, | 282 | 703 | AggregateFunctionTemplate>( | 283 | 703 | result.release(), argument_types_, attr.is_window_function)); | 284 | 703 | } | 285 | 703 | }, | 286 | 703 | make_bool_variant(result_is_nullable)); | 287 | 703 | } | 288 | 960 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 960 | return AggregateFunctionPtr(result.release()); | 290 | 960 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 12.5k | TArgs&&... args) { | 267 | 12.5k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 12.5k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 12.5k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 12.5k | if (have_nullable(argument_types_)) { | 274 | 7.82k | std::visit( | 275 | 7.82k | [&](auto result_is_nullable) { | 276 | 7.82k | if (attr.enable_aggregate_function_null_v2) { | 277 | 7.82k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 7.82k | AggregateFunctionTemplate>( | 279 | 7.82k | result.release(), argument_types_, attr.is_window_function)); | 280 | 7.82k | } else { | 281 | 7.82k | result.reset(new NullableT<false, result_is_nullable, | 282 | 7.82k | AggregateFunctionTemplate>( | 283 | 7.82k | result.release(), argument_types_, attr.is_window_function)); | 284 | 7.82k | } | 285 | 7.82k | }, | 286 | 7.82k | make_bool_variant(result_is_nullable)); | 287 | 7.82k | } | 288 | 12.5k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 12.5k | return AggregateFunctionPtr(result.release()); | 290 | 12.5k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 4.18k | TArgs&&... args) { | 267 | 4.18k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 4.18k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 4.18k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 4.18k | if (have_nullable(argument_types_)) { | 274 | 2.37k | std::visit( | 275 | 2.37k | [&](auto result_is_nullable) { | 276 | 2.37k | if (attr.enable_aggregate_function_null_v2) { | 277 | 2.37k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2.37k | AggregateFunctionTemplate>( | 279 | 2.37k | result.release(), argument_types_, attr.is_window_function)); | 280 | 2.37k | } else { | 281 | 2.37k | result.reset(new NullableT<false, result_is_nullable, | 282 | 2.37k | AggregateFunctionTemplate>( | 283 | 2.37k | result.release(), argument_types_, attr.is_window_function)); | 284 | 2.37k | } | 285 | 2.37k | }, | 286 | 2.37k | make_bool_variant(result_is_nullable)); | 287 | 2.37k | } | 288 | 4.18k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 4.18k | return AggregateFunctionPtr(result.release()); | 290 | 4.18k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 883 | TArgs&&... args) { | 267 | 883 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 883 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 883 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 883 | if (have_nullable(argument_types_)) { | 274 | 575 | std::visit( | 275 | 575 | [&](auto result_is_nullable) { | 276 | 575 | if (attr.enable_aggregate_function_null_v2) { | 277 | 575 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 575 | AggregateFunctionTemplate>( | 279 | 575 | result.release(), argument_types_, attr.is_window_function)); | 280 | 575 | } else { | 281 | 575 | result.reset(new NullableT<false, result_is_nullable, | 282 | 575 | AggregateFunctionTemplate>( | 283 | 575 | result.release(), argument_types_, attr.is_window_function)); | 284 | 575 | } | 285 | 575 | }, | 286 | 575 | make_bool_variant(result_is_nullable)); | 287 | 575 | } | 288 | 883 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 883 | return AggregateFunctionPtr(result.release()); | 290 | 883 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 626 | TArgs&&... args) { | 267 | 626 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 626 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 626 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 626 | if (have_nullable(argument_types_)) { | 274 | 485 | std::visit( | 275 | 485 | [&](auto result_is_nullable) { | 276 | 485 | if (attr.enable_aggregate_function_null_v2) { | 277 | 485 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 485 | AggregateFunctionTemplate>( | 279 | 485 | result.release(), argument_types_, attr.is_window_function)); | 280 | 485 | } else { | 281 | 485 | result.reset(new NullableT<false, result_is_nullable, | 282 | 485 | AggregateFunctionTemplate>( | 283 | 485 | result.release(), argument_types_, attr.is_window_function)); | 284 | 485 | } | 285 | 485 | }, | 286 | 485 | make_bool_variant(result_is_nullable)); | 287 | 485 | } | 288 | 626 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 626 | return AggregateFunctionPtr(result.release()); | 290 | 626 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.36k | TArgs&&... args) { | 267 | 1.36k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.36k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.36k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.36k | if (have_nullable(argument_types_)) { | 274 | 1.00k | std::visit( | 275 | 1.00k | [&](auto result_is_nullable) { | 276 | 1.00k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.00k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.00k | AggregateFunctionTemplate>( | 279 | 1.00k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.00k | } else { | 281 | 1.00k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.00k | AggregateFunctionTemplate>( | 283 | 1.00k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.00k | } | 285 | 1.00k | }, | 286 | 1.00k | make_bool_variant(result_is_nullable)); | 287 | 1.00k | } | 288 | 1.36k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.36k | return AggregateFunctionPtr(result.release()); | 290 | 1.36k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 290 | TArgs&&... args) { | 267 | 290 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 290 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 290 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 290 | if (have_nullable(argument_types_)) { | 274 | 290 | std::visit( | 275 | 290 | [&](auto result_is_nullable) { | 276 | 290 | if (attr.enable_aggregate_function_null_v2) { | 277 | 290 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 290 | AggregateFunctionTemplate>( | 279 | 290 | result.release(), argument_types_, attr.is_window_function)); | 280 | 290 | } else { | 281 | 290 | result.reset(new NullableT<false, result_is_nullable, | 282 | 290 | AggregateFunctionTemplate>( | 283 | 290 | result.release(), argument_types_, attr.is_window_function)); | 284 | 290 | } | 285 | 290 | }, | 286 | 290 | make_bool_variant(result_is_nullable)); | 287 | 290 | } | 288 | 290 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 290 | return AggregateFunctionPtr(result.release()); | 290 | 290 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.74k | TArgs&&... args) { | 267 | 2.74k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.74k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.74k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.74k | if (have_nullable(argument_types_)) { | 274 | 1.67k | std::visit( | 275 | 1.67k | [&](auto result_is_nullable) { | 276 | 1.67k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.67k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.67k | AggregateFunctionTemplate>( | 279 | 1.67k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.67k | } else { | 281 | 1.67k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.67k | AggregateFunctionTemplate>( | 283 | 1.67k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.67k | } | 285 | 1.67k | }, | 286 | 1.67k | make_bool_variant(result_is_nullable)); | 287 | 1.67k | } | 288 | 2.74k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.74k | return AggregateFunctionPtr(result.release()); | 290 | 2.74k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 723 | TArgs&&... args) { | 267 | 723 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 723 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 723 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 723 | if (have_nullable(argument_types_)) { | 274 | 603 | std::visit( | 275 | 603 | [&](auto result_is_nullable) { | 276 | 603 | if (attr.enable_aggregate_function_null_v2) { | 277 | 603 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 603 | AggregateFunctionTemplate>( | 279 | 603 | result.release(), argument_types_, attr.is_window_function)); | 280 | 603 | } else { | 281 | 603 | result.reset(new NullableT<false, result_is_nullable, | 282 | 603 | AggregateFunctionTemplate>( | 283 | 603 | result.release(), argument_types_, attr.is_window_function)); | 284 | 603 | } | 285 | 603 | }, | 286 | 603 | make_bool_variant(result_is_nullable)); | 287 | 603 | } | 288 | 723 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 723 | return AggregateFunctionPtr(result.release()); | 290 | 723 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 36 | TArgs&&... args) { | 267 | 36 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 36 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 36 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 36 | if (have_nullable(argument_types_)) { | 274 | 36 | std::visit( | 275 | 36 | [&](auto result_is_nullable) { | 276 | 36 | if (attr.enable_aggregate_function_null_v2) { | 277 | 36 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 36 | AggregateFunctionTemplate>( | 279 | 36 | result.release(), argument_types_, attr.is_window_function)); | 280 | 36 | } else { | 281 | 36 | result.reset(new NullableT<false, result_is_nullable, | 282 | 36 | AggregateFunctionTemplate>( | 283 | 36 | result.release(), argument_types_, attr.is_window_function)); | 284 | 36 | } | 285 | 36 | }, | 286 | 36 | make_bool_variant(result_is_nullable)); | 287 | 36 | } | 288 | 36 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 36 | return AggregateFunctionPtr(result.release()); | 290 | 36 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 4 | TArgs&&... args) { | 267 | 4 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 4 | if (have_nullable(argument_types_)) { | 274 | 4 | std::visit( | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 4 | }, | 286 | 4 | make_bool_variant(result_is_nullable)); | 287 | 4 | } | 288 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 4 | return AggregateFunctionPtr(result.release()); | 290 | 4 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 5.38k | TArgs&&... args) { | 267 | 5.38k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 5.38k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 5.38k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 5.38k | if (have_nullable(argument_types_)) { | 274 | 3.19k | std::visit( | 275 | 3.19k | [&](auto result_is_nullable) { | 276 | 3.19k | if (attr.enable_aggregate_function_null_v2) { | 277 | 3.19k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 3.19k | AggregateFunctionTemplate>( | 279 | 3.19k | result.release(), argument_types_, attr.is_window_function)); | 280 | 3.19k | } else { | 281 | 3.19k | result.reset(new NullableT<false, result_is_nullable, | 282 | 3.19k | AggregateFunctionTemplate>( | 283 | 3.19k | result.release(), argument_types_, attr.is_window_function)); | 284 | 3.19k | } | 285 | 3.19k | }, | 286 | 3.19k | make_bool_variant(result_is_nullable)); | 287 | 3.19k | } | 288 | 5.38k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 5.38k | return AggregateFunctionPtr(result.release()); | 290 | 5.38k | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.63k | TArgs&&... args) { | 267 | 3.63k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.63k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.63k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.63k | if (have_nullable(argument_types_)) { | 274 | 1.33k | std::visit( | 275 | 1.33k | [&](auto result_is_nullable) { | 276 | 1.33k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.33k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.33k | AggregateFunctionTemplate>( | 279 | 1.33k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.33k | } else { | 281 | 1.33k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.33k | AggregateFunctionTemplate>( | 283 | 1.33k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.33k | } | 285 | 1.33k | }, | 286 | 1.33k | make_bool_variant(result_is_nullable)); | 287 | 1.33k | } | 288 | 3.63k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.63k | return AggregateFunctionPtr(result.release()); | 290 | 3.63k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 941 | TArgs&&... args) { | 267 | 941 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 941 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 941 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 941 | if (have_nullable(argument_types_)) { | 274 | 689 | std::visit( | 275 | 689 | [&](auto result_is_nullable) { | 276 | 689 | if (attr.enable_aggregate_function_null_v2) { | 277 | 689 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 689 | AggregateFunctionTemplate>( | 279 | 689 | result.release(), argument_types_, attr.is_window_function)); | 280 | 689 | } else { | 281 | 689 | result.reset(new NullableT<false, result_is_nullable, | 282 | 689 | AggregateFunctionTemplate>( | 283 | 689 | result.release(), argument_types_, attr.is_window_function)); | 284 | 689 | } | 285 | 689 | }, | 286 | 689 | make_bool_variant(result_is_nullable)); | 287 | 689 | } | 288 | 941 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 941 | return AggregateFunctionPtr(result.release()); | 290 | 941 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.50k | TArgs&&... args) { | 267 | 1.50k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.50k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.50k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.50k | if (have_nullable(argument_types_)) { | 274 | 1.50k | std::visit( | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.50k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.50k | AggregateFunctionTemplate>( | 279 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, | 286 | 1.50k | make_bool_variant(result_is_nullable)); | 287 | 1.50k | } | 288 | 1.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.50k | return AggregateFunctionPtr(result.release()); | 290 | 1.50k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 157 | TArgs&&... args) { | 267 | 157 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 157 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 157 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 157 | if (have_nullable(argument_types_)) { | 274 | 157 | std::visit( | 275 | 157 | [&](auto result_is_nullable) { | 276 | 157 | if (attr.enable_aggregate_function_null_v2) { | 277 | 157 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 157 | AggregateFunctionTemplate>( | 279 | 157 | result.release(), argument_types_, attr.is_window_function)); | 280 | 157 | } else { | 281 | 157 | result.reset(new NullableT<false, result_is_nullable, | 282 | 157 | AggregateFunctionTemplate>( | 283 | 157 | result.release(), argument_types_, attr.is_window_function)); | 284 | 157 | } | 285 | 157 | }, | 286 | 157 | make_bool_variant(result_is_nullable)); | 287 | 157 | } | 288 | 157 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 157 | return AggregateFunctionPtr(result.release()); | 290 | 157 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 515 | TArgs&&... args) { | 267 | 515 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 515 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 515 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 515 | if (have_nullable(argument_types_)) { | 274 | 397 | std::visit( | 275 | 397 | [&](auto result_is_nullable) { | 276 | 397 | if (attr.enable_aggregate_function_null_v2) { | 277 | 397 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 397 | AggregateFunctionTemplate>( | 279 | 397 | result.release(), argument_types_, attr.is_window_function)); | 280 | 397 | } else { | 281 | 397 | result.reset(new NullableT<false, result_is_nullable, | 282 | 397 | AggregateFunctionTemplate>( | 283 | 397 | result.release(), argument_types_, attr.is_window_function)); | 284 | 397 | } | 285 | 397 | }, | 286 | 397 | make_bool_variant(result_is_nullable)); | 287 | 397 | } | 288 | 515 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 515 | return AggregateFunctionPtr(result.release()); | 290 | 515 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 528 | TArgs&&... args) { | 267 | 528 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 528 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 528 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 528 | if (have_nullable(argument_types_)) { | 274 | 417 | std::visit( | 275 | 417 | [&](auto result_is_nullable) { | 276 | 417 | if (attr.enable_aggregate_function_null_v2) { | 277 | 417 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 417 | AggregateFunctionTemplate>( | 279 | 417 | result.release(), argument_types_, attr.is_window_function)); | 280 | 417 | } else { | 281 | 417 | result.reset(new NullableT<false, result_is_nullable, | 282 | 417 | AggregateFunctionTemplate>( | 283 | 417 | result.release(), argument_types_, attr.is_window_function)); | 284 | 417 | } | 285 | 417 | }, | 286 | 417 | make_bool_variant(result_is_nullable)); | 287 | 417 | } | 288 | 528 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 528 | return AggregateFunctionPtr(result.release()); | 290 | 528 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 10.3k | TArgs&&... args) { | 267 | 10.3k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 10.3k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 10.3k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 10.3k | if (have_nullable(argument_types_)) { | 274 | 6.63k | std::visit( | 275 | 6.63k | [&](auto result_is_nullable) { | 276 | 6.63k | if (attr.enable_aggregate_function_null_v2) { | 277 | 6.63k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6.63k | AggregateFunctionTemplate>( | 279 | 6.63k | result.release(), argument_types_, attr.is_window_function)); | 280 | 6.63k | } else { | 281 | 6.63k | result.reset(new NullableT<false, result_is_nullable, | 282 | 6.63k | AggregateFunctionTemplate>( | 283 | 6.63k | result.release(), argument_types_, attr.is_window_function)); | 284 | 6.63k | } | 285 | 6.63k | }, | 286 | 6.63k | make_bool_variant(result_is_nullable)); | 287 | 6.63k | } | 288 | 10.3k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 10.3k | return AggregateFunctionPtr(result.release()); | 290 | 10.3k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 3.38k | TArgs&&... args) { | 267 | 3.38k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 3.38k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 3.38k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 3.38k | if (have_nullable(argument_types_)) { | 274 | 1.80k | std::visit( | 275 | 1.80k | [&](auto result_is_nullable) { | 276 | 1.80k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.80k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.80k | AggregateFunctionTemplate>( | 279 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.80k | } else { | 281 | 1.80k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.80k | AggregateFunctionTemplate>( | 283 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.80k | } | 285 | 1.80k | }, | 286 | 1.80k | make_bool_variant(result_is_nullable)); | 287 | 1.80k | } | 288 | 3.38k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 3.38k | return AggregateFunctionPtr(result.release()); | 290 | 3.38k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 420 | TArgs&&... args) { | 267 | 420 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 420 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 420 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 420 | if (have_nullable(argument_types_)) { | 274 | 267 | std::visit( | 275 | 267 | [&](auto result_is_nullable) { | 276 | 267 | if (attr.enable_aggregate_function_null_v2) { | 277 | 267 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 267 | AggregateFunctionTemplate>( | 279 | 267 | result.release(), argument_types_, attr.is_window_function)); | 280 | 267 | } else { | 281 | 267 | result.reset(new NullableT<false, result_is_nullable, | 282 | 267 | AggregateFunctionTemplate>( | 283 | 267 | result.release(), argument_types_, attr.is_window_function)); | 284 | 267 | } | 285 | 267 | }, | 286 | 267 | make_bool_variant(result_is_nullable)); | 287 | 267 | } | 288 | 420 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 420 | return AggregateFunctionPtr(result.release()); | 290 | 420 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 260 | TArgs&&... args) { | 267 | 260 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 260 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 260 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 260 | if (have_nullable(argument_types_)) { | 274 | 260 | std::visit( | 275 | 260 | [&](auto result_is_nullable) { | 276 | 260 | if (attr.enable_aggregate_function_null_v2) { | 277 | 260 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 260 | AggregateFunctionTemplate>( | 279 | 260 | result.release(), argument_types_, attr.is_window_function)); | 280 | 260 | } else { | 281 | 260 | result.reset(new NullableT<false, result_is_nullable, | 282 | 260 | AggregateFunctionTemplate>( | 283 | 260 | result.release(), argument_types_, attr.is_window_function)); | 284 | 260 | } | 285 | 260 | }, | 286 | 260 | make_bool_variant(result_is_nullable)); | 287 | 260 | } | 288 | 260 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 260 | return AggregateFunctionPtr(result.release()); | 290 | 260 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 380 | TArgs&&... args) { | 267 | 380 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 380 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 380 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 380 | if (have_nullable(argument_types_)) { | 274 | 374 | std::visit( | 275 | 374 | [&](auto result_is_nullable) { | 276 | 374 | if (attr.enable_aggregate_function_null_v2) { | 277 | 374 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 374 | AggregateFunctionTemplate>( | 279 | 374 | result.release(), argument_types_, attr.is_window_function)); | 280 | 374 | } else { | 281 | 374 | result.reset(new NullableT<false, result_is_nullable, | 282 | 374 | AggregateFunctionTemplate>( | 283 | 374 | result.release(), argument_types_, attr.is_window_function)); | 284 | 374 | } | 285 | 374 | }, | 286 | 374 | make_bool_variant(result_is_nullable)); | 287 | 374 | } | 288 | 380 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 380 | return AggregateFunctionPtr(result.release()); | 290 | 380 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 202 | TArgs&&... args) { | 267 | 202 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 202 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 202 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 202 | if (have_nullable(argument_types_)) { | 274 | 200 | std::visit( | 275 | 200 | [&](auto result_is_nullable) { | 276 | 200 | if (attr.enable_aggregate_function_null_v2) { | 277 | 200 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 200 | AggregateFunctionTemplate>( | 279 | 200 | result.release(), argument_types_, attr.is_window_function)); | 280 | 200 | } else { | 281 | 200 | result.reset(new NullableT<false, result_is_nullable, | 282 | 200 | AggregateFunctionTemplate>( | 283 | 200 | result.release(), argument_types_, attr.is_window_function)); | 284 | 200 | } | 285 | 200 | }, | 286 | 200 | make_bool_variant(result_is_nullable)); | 287 | 200 | } | 288 | 202 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 202 | return AggregateFunctionPtr(result.release()); | 290 | 202 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.46k | TArgs&&... args) { | 267 | 2.46k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.46k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.46k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.46k | if (have_nullable(argument_types_)) { | 274 | 1.50k | std::visit( | 275 | 1.50k | [&](auto result_is_nullable) { | 276 | 1.50k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.50k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.50k | AggregateFunctionTemplate>( | 279 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.50k | } else { | 281 | 1.50k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.50k | AggregateFunctionTemplate>( | 283 | 1.50k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.50k | } | 285 | 1.50k | }, | 286 | 1.50k | make_bool_variant(result_is_nullable)); | 287 | 1.50k | } | 288 | 2.46k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.46k | return AggregateFunctionPtr(result.release()); | 290 | 2.46k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1 | TArgs&&... args) { | 267 | 1 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1 | return AggregateFunctionPtr(result.release()); | 290 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 630 | TArgs&&... args) { | 267 | 630 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 630 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 630 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 630 | if (have_nullable(argument_types_)) { | 274 | 514 | std::visit( | 275 | 514 | [&](auto result_is_nullable) { | 276 | 514 | if (attr.enable_aggregate_function_null_v2) { | 277 | 514 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 514 | AggregateFunctionTemplate>( | 279 | 514 | result.release(), argument_types_, attr.is_window_function)); | 280 | 514 | } else { | 281 | 514 | result.reset(new NullableT<false, result_is_nullable, | 282 | 514 | AggregateFunctionTemplate>( | 283 | 514 | result.release(), argument_types_, attr.is_window_function)); | 284 | 514 | } | 285 | 514 | }, | 286 | 514 | make_bool_variant(result_is_nullable)); | 287 | 514 | } | 288 | 630 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 630 | return AggregateFunctionPtr(result.release()); | 290 | 630 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 36 | TArgs&&... args) { | 267 | 36 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 36 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 36 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 36 | if (have_nullable(argument_types_)) { | 274 | 36 | std::visit( | 275 | 36 | [&](auto result_is_nullable) { | 276 | 36 | if (attr.enable_aggregate_function_null_v2) { | 277 | 36 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 36 | AggregateFunctionTemplate>( | 279 | 36 | result.release(), argument_types_, attr.is_window_function)); | 280 | 36 | } else { | 281 | 36 | result.reset(new NullableT<false, result_is_nullable, | 282 | 36 | AggregateFunctionTemplate>( | 283 | 36 | result.release(), argument_types_, attr.is_window_function)); | 284 | 36 | } | 285 | 36 | }, | 286 | 36 | make_bool_variant(result_is_nullable)); | 287 | 36 | } | 288 | 36 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 36 | return AggregateFunctionPtr(result.release()); | 290 | 36 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 4 | TArgs&&... args) { | 267 | 4 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 4 | if (have_nullable(argument_types_)) { | 274 | 4 | std::visit( | 275 | 4 | [&](auto result_is_nullable) { | 276 | 4 | if (attr.enable_aggregate_function_null_v2) { | 277 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 4 | AggregateFunctionTemplate>( | 279 | 4 | result.release(), argument_types_, attr.is_window_function)); | 280 | 4 | } else { | 281 | 4 | result.reset(new NullableT<false, result_is_nullable, | 282 | 4 | AggregateFunctionTemplate>( | 283 | 4 | result.release(), argument_types_, attr.is_window_function)); | 284 | 4 | } | 285 | 4 | }, | 286 | 4 | make_bool_variant(result_is_nullable)); | 287 | 4 | } | 288 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 4 | return AggregateFunctionPtr(result.release()); | 290 | 4 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 143 | TArgs&&... args) { | 267 | 143 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 143 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 143 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 143 | if (have_nullable(argument_types_)) { | 274 | 116 | std::visit( | 275 | 116 | [&](auto result_is_nullable) { | 276 | 116 | if (attr.enable_aggregate_function_null_v2) { | 277 | 116 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 116 | AggregateFunctionTemplate>( | 279 | 116 | result.release(), argument_types_, attr.is_window_function)); | 280 | 116 | } else { | 281 | 116 | result.reset(new NullableT<false, result_is_nullable, | 282 | 116 | AggregateFunctionTemplate>( | 283 | 116 | result.release(), argument_types_, attr.is_window_function)); | 284 | 116 | } | 285 | 116 | }, | 286 | 116 | make_bool_variant(result_is_nullable)); | 287 | 116 | } | 288 | 143 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 143 | return AggregateFunctionPtr(result.release()); | 290 | 143 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 10 | TArgs&&... args) { | 267 | 10 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 10 | if (have_nullable(argument_types_)) { | 274 | 10 | std::visit( | 275 | 10 | [&](auto result_is_nullable) { | 276 | 10 | if (attr.enable_aggregate_function_null_v2) { | 277 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 10 | AggregateFunctionTemplate>( | 279 | 10 | result.release(), argument_types_, attr.is_window_function)); | 280 | 10 | } else { | 281 | 10 | result.reset(new NullableT<false, result_is_nullable, | 282 | 10 | AggregateFunctionTemplate>( | 283 | 10 | result.release(), argument_types_, attr.is_window_function)); | 284 | 10 | } | 285 | 10 | }, | 286 | 10 | make_bool_variant(result_is_nullable)); | 287 | 10 | } | 288 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 10 | return AggregateFunctionPtr(result.release()); | 290 | 10 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 14 | TArgs&&... args) { | 267 | 14 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 14 | if (have_nullable(argument_types_)) { | 274 | 14 | std::visit( | 275 | 14 | [&](auto result_is_nullable) { | 276 | 14 | if (attr.enable_aggregate_function_null_v2) { | 277 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 14 | AggregateFunctionTemplate>( | 279 | 14 | result.release(), argument_types_, attr.is_window_function)); | 280 | 14 | } else { | 281 | 14 | result.reset(new NullableT<false, result_is_nullable, | 282 | 14 | AggregateFunctionTemplate>( | 283 | 14 | result.release(), argument_types_, attr.is_window_function)); | 284 | 14 | } | 285 | 14 | }, | 286 | 14 | make_bool_variant(result_is_nullable)); | 287 | 14 | } | 288 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 14 | return AggregateFunctionPtr(result.release()); | 290 | 14 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 16 | std::visit( | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, | 286 | 16 | make_bool_variant(result_is_nullable)); | 287 | 16 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 12 | TArgs&&... args) { | 267 | 12 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 12 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 12 | return AggregateFunctionPtr(result.release()); | 290 | 12 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6 | TArgs&&... args) { | 267 | 6 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6 | return AggregateFunctionPtr(result.release()); | 290 | 6 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 576 | TArgs&&... args) { | 267 | 576 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 576 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 576 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 576 | if (have_nullable(argument_types_)) { | 274 | 535 | std::visit( | 275 | 535 | [&](auto result_is_nullable) { | 276 | 535 | if (attr.enable_aggregate_function_null_v2) { | 277 | 535 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 535 | AggregateFunctionTemplate>( | 279 | 535 | result.release(), argument_types_, attr.is_window_function)); | 280 | 535 | } else { | 281 | 535 | result.reset(new NullableT<false, result_is_nullable, | 282 | 535 | AggregateFunctionTemplate>( | 283 | 535 | result.release(), argument_types_, attr.is_window_function)); | 284 | 535 | } | 285 | 535 | }, | 286 | 535 | make_bool_variant(result_is_nullable)); | 287 | 535 | } | 288 | 576 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 576 | return AggregateFunctionPtr(result.release()); | 290 | 576 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 44 | TArgs&&... args) { | 267 | 44 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 44 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 44 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 44 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 44 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 44 | return AggregateFunctionPtr(result.release()); | 290 | 44 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 6 | TArgs&&... args) { | 267 | 6 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 6 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 6 | return AggregateFunctionPtr(result.release()); | 290 | 6 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 5 | TArgs&&... args) { | 267 | 5 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 5 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 5 | return AggregateFunctionPtr(result.release()); | 290 | 5 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 58 | TArgs&&... args) { | 267 | 58 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 58 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 58 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 58 | if (have_nullable(argument_types_)) { | 274 | 22 | std::visit( | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 22 | result.reset(new NullableT<false, result_is_nullable, | 282 | 22 | AggregateFunctionTemplate>( | 283 | 22 | result.release(), argument_types_, attr.is_window_function)); | 284 | 22 | } | 285 | 22 | }, | 286 | 22 | make_bool_variant(result_is_nullable)); | 287 | 22 | } | 288 | 58 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 58 | return AggregateFunctionPtr(result.release()); | 290 | 58 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionAvgDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 89 | TArgs&&... args) { | 267 | 89 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 89 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 89 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 89 | if (have_nullable(argument_types_)) { | 274 | 79 | std::visit( | 275 | 79 | [&](auto result_is_nullable) { | 276 | 79 | if (attr.enable_aggregate_function_null_v2) { | 277 | 79 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 79 | AggregateFunctionTemplate>( | 279 | 79 | result.release(), argument_types_, attr.is_window_function)); | 280 | 79 | } else { | 281 | 79 | result.reset(new NullableT<false, result_is_nullable, | 282 | 79 | AggregateFunctionTemplate>( | 283 | 79 | result.release(), argument_types_, attr.is_window_function)); | 284 | 79 | } | 285 | 79 | }, | 286 | 79 | make_bool_variant(result_is_nullable)); | 287 | 79 | } | 288 | 89 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 89 | return AggregateFunctionPtr(result.release()); | 290 | 89 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 8 | std::visit( | 275 | 8 | [&](auto result_is_nullable) { | 276 | 8 | if (attr.enable_aggregate_function_null_v2) { | 277 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 8 | AggregateFunctionTemplate>( | 279 | 8 | result.release(), argument_types_, attr.is_window_function)); | 280 | 8 | } else { | 281 | 8 | result.reset(new NullableT<false, result_is_nullable, | 282 | 8 | AggregateFunctionTemplate>( | 283 | 8 | result.release(), argument_types_, attr.is_window_function)); | 284 | 8 | } | 285 | 8 | }, | 286 | 8 | make_bool_variant(result_is_nullable)); | 287 | 8 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_29ENS_24AggregateFunctionAvgDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 641 | TArgs&&... args) { | 267 | 641 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 641 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 641 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 641 | if (have_nullable(argument_types_)) { | 274 | 181 | std::visit( | 275 | 181 | [&](auto result_is_nullable) { | 276 | 181 | if (attr.enable_aggregate_function_null_v2) { | 277 | 181 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 181 | AggregateFunctionTemplate>( | 279 | 181 | result.release(), argument_types_, attr.is_window_function)); | 280 | 181 | } else { | 281 | 181 | result.reset(new NullableT<false, result_is_nullable, | 282 | 181 | AggregateFunctionTemplate>( | 283 | 181 | result.release(), argument_types_, attr.is_window_function)); | 284 | 181 | } | 285 | 181 | }, | 286 | 181 | make_bool_variant(result_is_nullable)); | 287 | 181 | } | 288 | 641 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 641 | return AggregateFunctionPtr(result.release()); | 290 | 641 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 9 | TArgs&&... args) { | 267 | 9 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 9 | if (have_nullable(argument_types_)) { | 274 | 9 | std::visit( | 275 | 9 | [&](auto result_is_nullable) { | 276 | 9 | if (attr.enable_aggregate_function_null_v2) { | 277 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 9 | AggregateFunctionTemplate>( | 279 | 9 | result.release(), argument_types_, attr.is_window_function)); | 280 | 9 | } else { | 281 | 9 | result.reset(new NullableT<false, result_is_nullable, | 282 | 9 | AggregateFunctionTemplate>( | 283 | 9 | result.release(), argument_types_, attr.is_window_function)); | 284 | 9 | } | 285 | 9 | }, | 286 | 9 | make_bool_variant(result_is_nullable)); | 287 | 9 | } | 288 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 9 | return AggregateFunctionPtr(result.release()); | 290 | 9 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 94 | TArgs&&... args) { | 267 | 94 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 94 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 94 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 94 | if (have_nullable(argument_types_)) { | 274 | 94 | std::visit( | 275 | 94 | [&](auto result_is_nullable) { | 276 | 94 | if (attr.enable_aggregate_function_null_v2) { | 277 | 94 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 94 | AggregateFunctionTemplate>( | 279 | 94 | result.release(), argument_types_, attr.is_window_function)); | 280 | 94 | } else { | 281 | 94 | result.reset(new NullableT<false, result_is_nullable, | 282 | 94 | AggregateFunctionTemplate>( | 283 | 94 | result.release(), argument_types_, attr.is_window_function)); | 284 | 94 | } | 285 | 94 | }, | 286 | 94 | make_bool_variant(result_is_nullable)); | 287 | 94 | } | 288 | 94 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 94 | return AggregateFunctionPtr(result.release()); | 290 | 94 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 24 | TArgs&&... args) { | 267 | 24 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 24 | if (have_nullable(argument_types_)) { | 274 | 24 | std::visit( | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 24 | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 24 | }, | 286 | 24 | make_bool_variant(result_is_nullable)); | 287 | 24 | } | 288 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 24 | return AggregateFunctionPtr(result.release()); | 290 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 98 | TArgs&&... args) { | 267 | 98 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 98 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 98 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 98 | if (have_nullable(argument_types_)) { | 274 | 98 | std::visit( | 275 | 98 | [&](auto result_is_nullable) { | 276 | 98 | if (attr.enable_aggregate_function_null_v2) { | 277 | 98 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 98 | AggregateFunctionTemplate>( | 279 | 98 | result.release(), argument_types_, attr.is_window_function)); | 280 | 98 | } else { | 281 | 98 | result.reset(new NullableT<false, result_is_nullable, | 282 | 98 | AggregateFunctionTemplate>( | 283 | 98 | result.release(), argument_types_, attr.is_window_function)); | 284 | 98 | } | 285 | 98 | }, | 286 | 98 | make_bool_variant(result_is_nullable)); | 287 | 98 | } | 288 | 98 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 98 | return AggregateFunctionPtr(result.release()); | 290 | 98 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 83 | TArgs&&... args) { | 267 | 83 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 83 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 83 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 83 | if (have_nullable(argument_types_)) { | 274 | 30 | std::visit( | 275 | 30 | [&](auto result_is_nullable) { | 276 | 30 | if (attr.enable_aggregate_function_null_v2) { | 277 | 30 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 30 | AggregateFunctionTemplate>( | 279 | 30 | result.release(), argument_types_, attr.is_window_function)); | 280 | 30 | } else { | 281 | 30 | result.reset(new NullableT<false, result_is_nullable, | 282 | 30 | AggregateFunctionTemplate>( | 283 | 30 | result.release(), argument_types_, attr.is_window_function)); | 284 | 30 | } | 285 | 30 | }, | 286 | 30 | make_bool_variant(result_is_nullable)); | 287 | 30 | } | 288 | 83 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 83 | return AggregateFunctionPtr(result.release()); | 290 | 83 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 29 | TArgs&&... args) { | 267 | 29 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 29 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 29 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 29 | if (have_nullable(argument_types_)) { | 274 | 21 | std::visit( | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 21 | }, | 286 | 21 | make_bool_variant(result_is_nullable)); | 287 | 21 | } | 288 | 29 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 29 | return AggregateFunctionPtr(result.release()); | 290 | 29 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.24k | TArgs&&... args) { | 267 | 1.24k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.24k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.24k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.24k | if (have_nullable(argument_types_)) { | 274 | 482 | std::visit( | 275 | 482 | [&](auto result_is_nullable) { | 276 | 482 | if (attr.enable_aggregate_function_null_v2) { | 277 | 482 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 482 | AggregateFunctionTemplate>( | 279 | 482 | result.release(), argument_types_, attr.is_window_function)); | 280 | 482 | } else { | 281 | 482 | result.reset(new NullableT<false, result_is_nullable, | 282 | 482 | AggregateFunctionTemplate>( | 283 | 482 | result.release(), argument_types_, attr.is_window_function)); | 284 | 482 | } | 285 | 482 | }, | 286 | 482 | make_bool_variant(result_is_nullable)); | 287 | 482 | } | 288 | 1.24k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.24k | return AggregateFunctionPtr(result.release()); | 290 | 1.24k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 403 | TArgs&&... args) { | 267 | 403 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 403 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 403 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 403 | if (have_nullable(argument_types_)) { | 274 | 356 | std::visit( | 275 | 356 | [&](auto result_is_nullable) { | 276 | 356 | if (attr.enable_aggregate_function_null_v2) { | 277 | 356 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 356 | AggregateFunctionTemplate>( | 279 | 356 | result.release(), argument_types_, attr.is_window_function)); | 280 | 356 | } else { | 281 | 356 | result.reset(new NullableT<false, result_is_nullable, | 282 | 356 | AggregateFunctionTemplate>( | 283 | 356 | result.release(), argument_types_, attr.is_window_function)); | 284 | 356 | } | 285 | 356 | }, | 286 | 356 | make_bool_variant(result_is_nullable)); | 287 | 356 | } | 288 | 403 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 403 | return AggregateFunctionPtr(result.release()); | 290 | 403 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2 | TArgs&&... args) { | 267 | 2 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2 | return AggregateFunctionPtr(result.release()); | 290 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 276 | TArgs&&... args) { | 267 | 276 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 276 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 276 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 276 | if (have_nullable(argument_types_)) { | 274 | 264 | std::visit( | 275 | 264 | [&](auto result_is_nullable) { | 276 | 264 | if (attr.enable_aggregate_function_null_v2) { | 277 | 264 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 264 | AggregateFunctionTemplate>( | 279 | 264 | result.release(), argument_types_, attr.is_window_function)); | 280 | 264 | } else { | 281 | 264 | result.reset(new NullableT<false, result_is_nullable, | 282 | 264 | AggregateFunctionTemplate>( | 283 | 264 | result.release(), argument_types_, attr.is_window_function)); | 284 | 264 | } | 285 | 264 | }, | 286 | 264 | make_bool_variant(result_is_nullable)); | 287 | 264 | } | 288 | 276 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 276 | return AggregateFunctionPtr(result.release()); | 290 | 276 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionAvgDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_31AggregateFunctionGroupBitOrDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 29 | TArgs&&... args) { | 267 | 29 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 29 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 29 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 29 | if (have_nullable(argument_types_)) { | 274 | 21 | std::visit( | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 21 | }, | 286 | 21 | make_bool_variant(result_is_nullable)); | 287 | 21 | } | 288 | 29 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 29 | return AggregateFunctionPtr(result.release()); | 290 | 29 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 451 | TArgs&&... args) { | 267 | 451 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 451 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 451 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 451 | if (have_nullable(argument_types_)) { | 274 | 438 | std::visit( | 275 | 438 | [&](auto result_is_nullable) { | 276 | 438 | if (attr.enable_aggregate_function_null_v2) { | 277 | 438 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 438 | AggregateFunctionTemplate>( | 279 | 438 | result.release(), argument_types_, attr.is_window_function)); | 280 | 438 | } else { | 281 | 438 | result.reset(new NullableT<false, result_is_nullable, | 282 | 438 | AggregateFunctionTemplate>( | 283 | 438 | result.release(), argument_types_, attr.is_window_function)); | 284 | 438 | } | 285 | 438 | }, | 286 | 438 | make_bool_variant(result_is_nullable)); | 287 | 438 | } | 288 | 451 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 451 | return AggregateFunctionPtr(result.release()); | 290 | 451 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 19 | std::visit( | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 19 | }, | 286 | 19 | make_bool_variant(result_is_nullable)); | 287 | 19 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 20 | std::visit( | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 20 | result.reset(new NullableT<false, result_is_nullable, | 282 | 20 | AggregateFunctionTemplate>( | 283 | 20 | result.release(), argument_types_, attr.is_window_function)); | 284 | 20 | } | 285 | 20 | }, | 286 | 20 | make_bool_variant(result_is_nullable)); | 287 | 20 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 452 | TArgs&&... args) { | 267 | 452 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 452 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 452 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 452 | if (have_nullable(argument_types_)) { | 274 | 438 | std::visit( | 275 | 438 | [&](auto result_is_nullable) { | 276 | 438 | if (attr.enable_aggregate_function_null_v2) { | 277 | 438 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 438 | AggregateFunctionTemplate>( | 279 | 438 | result.release(), argument_types_, attr.is_window_function)); | 280 | 438 | } else { | 281 | 438 | result.reset(new NullableT<false, result_is_nullable, | 282 | 438 | AggregateFunctionTemplate>( | 283 | 438 | result.release(), argument_types_, attr.is_window_function)); | 284 | 438 | } | 285 | 438 | }, | 286 | 438 | make_bool_variant(result_is_nullable)); | 287 | 438 | } | 288 | 452 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 452 | return AggregateFunctionPtr(result.release()); | 290 | 452 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 19 | std::visit( | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 19 | }, | 286 | 19 | make_bool_variant(result_is_nullable)); | 287 | 19 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 20 | std::visit( | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 20 | result.reset(new NullableT<false, result_is_nullable, | 282 | 20 | AggregateFunctionTemplate>( | 283 | 20 | result.release(), argument_types_, attr.is_window_function)); | 284 | 20 | } | 285 | 20 | }, | 286 | 20 | make_bool_variant(result_is_nullable)); | 287 | 20 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 26 | TArgs&&... args) { | 267 | 26 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 26 | if (have_nullable(argument_types_)) { | 274 | 18 | std::visit( | 275 | 18 | [&](auto result_is_nullable) { | 276 | 18 | if (attr.enable_aggregate_function_null_v2) { | 277 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 18 | AggregateFunctionTemplate>( | 279 | 18 | result.release(), argument_types_, attr.is_window_function)); | 280 | 18 | } else { | 281 | 18 | result.reset(new NullableT<false, result_is_nullable, | 282 | 18 | AggregateFunctionTemplate>( | 283 | 18 | result.release(), argument_types_, attr.is_window_function)); | 284 | 18 | } | 285 | 18 | }, | 286 | 18 | make_bool_variant(result_is_nullable)); | 287 | 18 | } | 288 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 26 | return AggregateFunctionPtr(result.release()); | 290 | 26 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 452 | TArgs&&... args) { | 267 | 452 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 452 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 452 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 452 | if (have_nullable(argument_types_)) { | 274 | 438 | std::visit( | 275 | 438 | [&](auto result_is_nullable) { | 276 | 438 | if (attr.enable_aggregate_function_null_v2) { | 277 | 438 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 438 | AggregateFunctionTemplate>( | 279 | 438 | result.release(), argument_types_, attr.is_window_function)); | 280 | 438 | } else { | 281 | 438 | result.reset(new NullableT<false, result_is_nullable, | 282 | 438 | AggregateFunctionTemplate>( | 283 | 438 | result.release(), argument_types_, attr.is_window_function)); | 284 | 438 | } | 285 | 438 | }, | 286 | 438 | make_bool_variant(result_is_nullable)); | 287 | 438 | } | 288 | 452 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 452 | return AggregateFunctionPtr(result.release()); | 290 | 452 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 19 | std::visit( | 275 | 19 | [&](auto result_is_nullable) { | 276 | 19 | if (attr.enable_aggregate_function_null_v2) { | 277 | 19 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 19 | AggregateFunctionTemplate>( | 279 | 19 | result.release(), argument_types_, attr.is_window_function)); | 280 | 19 | } else { | 281 | 19 | result.reset(new NullableT<false, result_is_nullable, | 282 | 19 | AggregateFunctionTemplate>( | 283 | 19 | result.release(), argument_types_, attr.is_window_function)); | 284 | 19 | } | 285 | 19 | }, | 286 | 19 | make_bool_variant(result_is_nullable)); | 287 | 19 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 28 | TArgs&&... args) { | 267 | 28 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 28 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 28 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 28 | if (have_nullable(argument_types_)) { | 274 | 20 | std::visit( | 275 | 20 | [&](auto result_is_nullable) { | 276 | 20 | if (attr.enable_aggregate_function_null_v2) { | 277 | 20 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 20 | AggregateFunctionTemplate>( | 279 | 20 | result.release(), argument_types_, attr.is_window_function)); | 280 | 20 | } else { | 281 | 20 | result.reset(new NullableT<false, result_is_nullable, | 282 | 20 | AggregateFunctionTemplate>( | 283 | 20 | result.release(), argument_types_, attr.is_window_function)); | 284 | 20 | } | 285 | 20 | }, | 286 | 20 | make_bool_variant(result_is_nullable)); | 287 | 20 | } | 288 | 28 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 28 | return AggregateFunctionPtr(result.release()); | 290 | 28 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 2.57k | TArgs&&... args) { | 267 | 2.57k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 2.57k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 2.57k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 2.57k | if (have_nullable(argument_types_)) { | 274 | 17 | std::visit( | 275 | 17 | [&](auto result_is_nullable) { | 276 | 17 | if (attr.enable_aggregate_function_null_v2) { | 277 | 17 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 17 | AggregateFunctionTemplate>( | 279 | 17 | result.release(), argument_types_, attr.is_window_function)); | 280 | 17 | } else { | 281 | 17 | result.reset(new NullableT<false, result_is_nullable, | 282 | 17 | AggregateFunctionTemplate>( | 283 | 17 | result.release(), argument_types_, attr.is_window_function)); | 284 | 17 | } | 285 | 17 | }, | 286 | 17 | make_bool_variant(result_is_nullable)); | 287 | 17 | } | 288 | 2.57k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 2.57k | return AggregateFunctionPtr(result.release()); | 290 | 2.57k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.30k | TArgs&&... args) { | 267 | 1.30k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.30k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.30k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.30k | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 1.30k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.30k | return AggregateFunctionPtr(result.release()); | 290 | 1.30k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 446 | TArgs&&... args) { | 267 | 446 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 446 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 446 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 446 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 446 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 446 | return AggregateFunctionPtr(result.release()); | 290 | 446 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 921 | TArgs&&... args) { | 267 | 921 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 921 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 921 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 921 | if (have_nullable(argument_types_)) { | 274 | 474 | std::visit( | 275 | 474 | [&](auto result_is_nullable) { | 276 | 474 | if (attr.enable_aggregate_function_null_v2) { | 277 | 474 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 474 | AggregateFunctionTemplate>( | 279 | 474 | result.release(), argument_types_, attr.is_window_function)); | 280 | 474 | } else { | 281 | 474 | result.reset(new NullableT<false, result_is_nullable, | 282 | 474 | AggregateFunctionTemplate>( | 283 | 474 | result.release(), argument_types_, attr.is_window_function)); | 284 | 474 | } | 285 | 474 | }, | 286 | 474 | make_bool_variant(result_is_nullable)); | 287 | 474 | } | 288 | 921 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 921 | return AggregateFunctionPtr(result.release()); | 290 | 921 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 981 | TArgs&&... args) { | 267 | 981 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 981 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 981 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 981 | if (have_nullable(argument_types_)) { | 274 | 532 | std::visit( | 275 | 532 | [&](auto result_is_nullable) { | 276 | 532 | if (attr.enable_aggregate_function_null_v2) { | 277 | 532 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 532 | AggregateFunctionTemplate>( | 279 | 532 | result.release(), argument_types_, attr.is_window_function)); | 280 | 532 | } else { | 281 | 532 | result.reset(new NullableT<false, result_is_nullable, | 282 | 532 | AggregateFunctionTemplate>( | 283 | 532 | result.release(), argument_types_, attr.is_window_function)); | 284 | 532 | } | 285 | 532 | }, | 286 | 532 | make_bool_variant(result_is_nullable)); | 287 | 532 | } | 288 | 981 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 981 | return AggregateFunctionPtr(result.release()); | 290 | 981 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.20k | TArgs&&... args) { | 267 | 1.20k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.20k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.20k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.20k | if (have_nullable(argument_types_)) { | 274 | 618 | std::visit( | 275 | 618 | [&](auto result_is_nullable) { | 276 | 618 | if (attr.enable_aggregate_function_null_v2) { | 277 | 618 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 618 | AggregateFunctionTemplate>( | 279 | 618 | result.release(), argument_types_, attr.is_window_function)); | 280 | 618 | } else { | 281 | 618 | result.reset(new NullableT<false, result_is_nullable, | 282 | 618 | AggregateFunctionTemplate>( | 283 | 618 | result.release(), argument_types_, attr.is_window_function)); | 284 | 618 | } | 285 | 618 | }, | 286 | 618 | make_bool_variant(result_is_nullable)); | 287 | 618 | } | 288 | 1.20k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.20k | return AggregateFunctionPtr(result.release()); | 290 | 1.20k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.47k | TArgs&&... args) { | 267 | 1.47k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.47k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.47k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.47k | if (have_nullable(argument_types_)) { | 274 | 586 | std::visit( | 275 | 586 | [&](auto result_is_nullable) { | 276 | 586 | if (attr.enable_aggregate_function_null_v2) { | 277 | 586 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 586 | AggregateFunctionTemplate>( | 279 | 586 | result.release(), argument_types_, attr.is_window_function)); | 280 | 586 | } else { | 281 | 586 | result.reset(new NullableT<false, result_is_nullable, | 282 | 586 | AggregateFunctionTemplate>( | 283 | 586 | result.release(), argument_types_, attr.is_window_function)); | 284 | 586 | } | 285 | 586 | }, | 286 | 586 | make_bool_variant(result_is_nullable)); | 287 | 586 | } | 288 | 1.47k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.47k | return AggregateFunctionPtr(result.release()); | 290 | 1.47k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.37k | TArgs&&... args) { | 267 | 1.37k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.37k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.37k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.37k | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 1.37k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.37k | return AggregateFunctionPtr(result.release()); | 290 | 1.37k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 10 | TArgs&&... args) { | 267 | 10 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 10 | if (have_nullable(argument_types_)) { | 274 | 0 | std::visit( | 275 | 0 | [&](auto result_is_nullable) { | 276 | 0 | if (attr.enable_aggregate_function_null_v2) { | 277 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 0 | AggregateFunctionTemplate>( | 279 | 0 | result.release(), argument_types_, attr.is_window_function)); | 280 | 0 | } else { | 281 | 0 | result.reset(new NullableT<false, result_is_nullable, | 282 | 0 | AggregateFunctionTemplate>( | 283 | 0 | result.release(), argument_types_, attr.is_window_function)); | 284 | 0 | } | 285 | 0 | }, | 286 | 0 | make_bool_variant(result_is_nullable)); | 287 | 0 | } | 288 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 10 | return AggregateFunctionPtr(result.release()); | 290 | 10 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.05k | TArgs&&... args) { | 267 | 1.05k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.05k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.05k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.05k | if (have_nullable(argument_types_)) { | 274 | 987 | std::visit( | 275 | 987 | [&](auto result_is_nullable) { | 276 | 987 | if (attr.enable_aggregate_function_null_v2) { | 277 | 987 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 987 | AggregateFunctionTemplate>( | 279 | 987 | result.release(), argument_types_, attr.is_window_function)); | 280 | 987 | } else { | 281 | 987 | result.reset(new NullableT<false, result_is_nullable, | 282 | 987 | AggregateFunctionTemplate>( | 283 | 987 | result.release(), argument_types_, attr.is_window_function)); | 284 | 987 | } | 285 | 987 | }, | 286 | 987 | make_bool_variant(result_is_nullable)); | 287 | 987 | } | 288 | 1.05k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.05k | return AggregateFunctionPtr(result.release()); | 290 | 1.05k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.09k | TArgs&&... args) { | 267 | 1.09k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.09k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.09k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.09k | if (have_nullable(argument_types_)) { | 274 | 1.02k | std::visit( | 275 | 1.02k | [&](auto result_is_nullable) { | 276 | 1.02k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.02k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.02k | AggregateFunctionTemplate>( | 279 | 1.02k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.02k | } else { | 281 | 1.02k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.02k | AggregateFunctionTemplate>( | 283 | 1.02k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.02k | } | 285 | 1.02k | }, | 286 | 1.02k | make_bool_variant(result_is_nullable)); | 287 | 1.02k | } | 288 | 1.09k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.09k | return AggregateFunctionPtr(result.release()); | 290 | 1.09k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 1.07k | TArgs&&... args) { | 267 | 1.07k | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 1.07k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 1.07k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 1.07k | if (have_nullable(argument_types_)) { | 274 | 1.00k | std::visit( | 275 | 1.00k | [&](auto result_is_nullable) { | 276 | 1.00k | if (attr.enable_aggregate_function_null_v2) { | 277 | 1.00k | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 1.00k | AggregateFunctionTemplate>( | 279 | 1.00k | result.release(), argument_types_, attr.is_window_function)); | 280 | 1.00k | } else { | 281 | 1.00k | result.reset(new NullableT<false, result_is_nullable, | 282 | 1.00k | AggregateFunctionTemplate>( | 283 | 1.00k | result.release(), argument_types_, attr.is_window_function)); | 284 | 1.00k | } | 285 | 1.00k | }, | 286 | 1.00k | make_bool_variant(result_is_nullable)); | 287 | 1.00k | } | 288 | 1.07k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 1.07k | return AggregateFunctionPtr(result.release()); | 290 | 1.07k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 592 | TArgs&&... args) { | 267 | 592 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 592 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 592 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 592 | if (have_nullable(argument_types_)) { | 274 | 531 | std::visit( | 275 | 531 | [&](auto result_is_nullable) { | 276 | 531 | if (attr.enable_aggregate_function_null_v2) { | 277 | 531 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 531 | AggregateFunctionTemplate>( | 279 | 531 | result.release(), argument_types_, attr.is_window_function)); | 280 | 531 | } else { | 281 | 531 | result.reset(new NullableT<false, result_is_nullable, | 282 | 531 | AggregateFunctionTemplate>( | 283 | 531 | result.release(), argument_types_, attr.is_window_function)); | 284 | 531 | } | 285 | 531 | }, | 286 | 531 | make_bool_variant(result_is_nullable)); | 287 | 531 | } | 288 | 592 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 592 | return AggregateFunctionPtr(result.release()); | 290 | 592 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataENS_15UnaryExpressionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 2 | std::visit( | 275 | 2 | [&](auto result_is_nullable) { | 276 | 2 | if (attr.enable_aggregate_function_null_v2) { | 277 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 2 | AggregateFunctionTemplate>( | 279 | 2 | result.release(), argument_types_, attr.is_window_function)); | 280 | 2 | } else { | 281 | 2 | result.reset(new NullableT<false, result_is_nullable, | 282 | 2 | AggregateFunctionTemplate>( | 283 | 2 | result.release(), argument_types_, attr.is_window_function)); | 284 | 2 | } | 285 | 2 | }, | 286 | 2 | make_bool_variant(result_is_nullable)); | 287 | 2 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 600 | TArgs&&... args) { | 267 | 600 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 600 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 600 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 600 | if (have_nullable(argument_types_)) { | 274 | 85 | std::visit( | 275 | 85 | [&](auto result_is_nullable) { | 276 | 85 | if (attr.enable_aggregate_function_null_v2) { | 277 | 85 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 85 | AggregateFunctionTemplate>( | 279 | 85 | result.release(), argument_types_, attr.is_window_function)); | 280 | 85 | } else { | 281 | 85 | result.reset(new NullableT<false, result_is_nullable, | 282 | 85 | AggregateFunctionTemplate>( | 283 | 85 | result.release(), argument_types_, attr.is_window_function)); | 284 | 85 | } | 285 | 85 | }, | 286 | 85 | make_bool_variant(result_is_nullable)); | 287 | 85 | } | 288 | 600 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 600 | return AggregateFunctionPtr(result.release()); | 290 | 600 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 7 | TArgs&&... args) { | 267 | 7 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 7 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 7 | return AggregateFunctionPtr(result.release()); | 290 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 8 | TArgs&&... args) { | 267 | 8 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 8 | if (have_nullable(argument_types_)) { | 274 | 6 | std::visit( | 275 | 6 | [&](auto result_is_nullable) { | 276 | 6 | if (attr.enable_aggregate_function_null_v2) { | 277 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 6 | AggregateFunctionTemplate>( | 279 | 6 | result.release(), argument_types_, attr.is_window_function)); | 280 | 6 | } else { | 281 | 6 | result.reset(new NullableT<false, result_is_nullable, | 282 | 6 | AggregateFunctionTemplate>( | 283 | 6 | result.release(), argument_types_, attr.is_window_function)); | 284 | 6 | } | 285 | 6 | }, | 286 | 6 | make_bool_variant(result_is_nullable)); | 287 | 6 | } | 288 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 8 | return AggregateFunctionPtr(result.release()); | 290 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 7 | TArgs&&... args) { | 267 | 7 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 7 | if (have_nullable(argument_types_)) { | 274 | 5 | std::visit( | 275 | 5 | [&](auto result_is_nullable) { | 276 | 5 | if (attr.enable_aggregate_function_null_v2) { | 277 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 5 | AggregateFunctionTemplate>( | 279 | 5 | result.release(), argument_types_, attr.is_window_function)); | 280 | 5 | } else { | 281 | 5 | result.reset(new NullableT<false, result_is_nullable, | 282 | 5 | AggregateFunctionTemplate>( | 283 | 5 | result.release(), argument_types_, attr.is_window_function)); | 284 | 5 | } | 285 | 5 | }, | 286 | 5 | make_bool_variant(result_is_nullable)); | 287 | 5 | } | 288 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 7 | return AggregateFunctionPtr(result.release()); | 290 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 24 | TArgs&&... args) { | 267 | 24 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 24 | if (have_nullable(argument_types_)) { | 274 | 21 | std::visit( | 275 | 21 | [&](auto result_is_nullable) { | 276 | 21 | if (attr.enable_aggregate_function_null_v2) { | 277 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 21 | AggregateFunctionTemplate>( | 279 | 21 | result.release(), argument_types_, attr.is_window_function)); | 280 | 21 | } else { | 281 | 21 | result.reset(new NullableT<false, result_is_nullable, | 282 | 21 | AggregateFunctionTemplate>( | 283 | 21 | result.release(), argument_types_, attr.is_window_function)); | 284 | 21 | } | 285 | 21 | }, | 286 | 21 | make_bool_variant(result_is_nullable)); | 287 | 21 | } | 288 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 24 | return AggregateFunctionPtr(result.release()); | 290 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 50 | TArgs&&... args) { | 267 | 50 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 50 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 50 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 50 | if (have_nullable(argument_types_)) { | 274 | 50 | std::visit( | 275 | 50 | [&](auto result_is_nullable) { | 276 | 50 | if (attr.enable_aggregate_function_null_v2) { | 277 | 50 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 50 | AggregateFunctionTemplate>( | 279 | 50 | result.release(), argument_types_, attr.is_window_function)); | 280 | 50 | } else { | 281 | 50 | result.reset(new NullableT<false, result_is_nullable, | 282 | 50 | AggregateFunctionTemplate>( | 283 | 50 | result.release(), argument_types_, attr.is_window_function)); | 284 | 50 | } | 285 | 50 | }, | 286 | 50 | make_bool_variant(result_is_nullable)); | 287 | 50 | } | 288 | 50 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 50 | return AggregateFunctionPtr(result.release()); | 290 | 50 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 38 | TArgs&&... args) { | 267 | 38 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 38 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 38 | return AggregateFunctionPtr(result.release()); | 290 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 46 | TArgs&&... args) { | 267 | 46 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 46 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 46 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 46 | if (have_nullable(argument_types_)) { | 274 | 46 | std::visit( | 275 | 46 | [&](auto result_is_nullable) { | 276 | 46 | if (attr.enable_aggregate_function_null_v2) { | 277 | 46 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 46 | AggregateFunctionTemplate>( | 279 | 46 | result.release(), argument_types_, attr.is_window_function)); | 280 | 46 | } else { | 281 | 46 | result.reset(new NullableT<false, result_is_nullable, | 282 | 46 | AggregateFunctionTemplate>( | 283 | 46 | result.release(), argument_types_, attr.is_window_function)); | 284 | 46 | } | 285 | 46 | }, | 286 | 46 | make_bool_variant(result_is_nullable)); | 287 | 46 | } | 288 | 46 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 46 | return AggregateFunctionPtr(result.release()); | 290 | 46 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 38 | TArgs&&... args) { | 267 | 38 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 38 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 38 | return AggregateFunctionPtr(result.release()); | 290 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 38 | TArgs&&... args) { | 267 | 38 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 38 | if (have_nullable(argument_types_)) { | 274 | 38 | std::visit( | 275 | 38 | [&](auto result_is_nullable) { | 276 | 38 | if (attr.enable_aggregate_function_null_v2) { | 277 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 38 | AggregateFunctionTemplate>( | 279 | 38 | result.release(), argument_types_, attr.is_window_function)); | 280 | 38 | } else { | 281 | 38 | result.reset(new NullableT<false, result_is_nullable, | 282 | 38 | AggregateFunctionTemplate>( | 283 | 38 | result.release(), argument_types_, attr.is_window_function)); | 284 | 38 | } | 285 | 38 | }, | 286 | 38 | make_bool_variant(result_is_nullable)); | 287 | 38 | } | 288 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 38 | return AggregateFunctionPtr(result.release()); | 290 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 42 | TArgs&&... args) { | 267 | 42 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 42 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 42 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 42 | if (have_nullable(argument_types_)) { | 274 | 42 | std::visit( | 275 | 42 | [&](auto result_is_nullable) { | 276 | 42 | if (attr.enable_aggregate_function_null_v2) { | 277 | 42 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 42 | AggregateFunctionTemplate>( | 279 | 42 | result.release(), argument_types_, attr.is_window_function)); | 280 | 42 | } else { | 281 | 42 | result.reset(new NullableT<false, result_is_nullable, | 282 | 42 | AggregateFunctionTemplate>( | 283 | 42 | result.release(), argument_types_, attr.is_window_function)); | 284 | 42 | } | 285 | 42 | }, | 286 | 42 | make_bool_variant(result_is_nullable)); | 287 | 42 | } | 288 | 42 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 42 | return AggregateFunctionPtr(result.release()); | 290 | 42 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_28ENS_28AggregateFunctionProductDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE28ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_29ENS_28AggregateFunctionProductDataILS3_29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE29ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_30ENS_28AggregateFunctionProductDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 22 | TArgs&&... args) { | 267 | 22 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 22 | if (have_nullable(argument_types_)) { | 274 | 22 | std::visit( | 275 | 22 | [&](auto result_is_nullable) { | 276 | 22 | if (attr.enable_aggregate_function_null_v2) { | 277 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 22 | AggregateFunctionTemplate>( | 279 | 22 | result.release(), argument_types_, attr.is_window_function)); | 280 | 22 | } else { | 281 | 22 | result.reset(new NullableT<false, result_is_nullable, | 282 | 22 | AggregateFunctionTemplate>( | 283 | 22 | result.release(), argument_types_, attr.is_window_function)); | 284 | 22 | } | 285 | 22 | }, | 286 | 22 | make_bool_variant(result_is_nullable)); | 287 | 22 | } | 288 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 22 | return AggregateFunctionPtr(result.release()); | 290 | 22 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE30ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE35ELS3_35ENS_28AggregateFunctionProductDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 48 | TArgs&&... args) { | 267 | 48 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 48 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 48 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 48 | if (have_nullable(argument_types_)) { | 274 | 48 | std::visit( | 275 | 48 | [&](auto result_is_nullable) { | 276 | 48 | if (attr.enable_aggregate_function_null_v2) { | 277 | 48 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 48 | AggregateFunctionTemplate>( | 279 | 48 | result.release(), argument_types_, attr.is_window_function)); | 280 | 48 | } else { | 281 | 48 | result.reset(new NullableT<false, result_is_nullable, | 282 | 48 | AggregateFunctionTemplate>( | 283 | 48 | result.release(), argument_types_, attr.is_window_function)); | 284 | 48 | } | 285 | 48 | }, | 286 | 48 | make_bool_variant(result_is_nullable)); | 287 | 48 | } | 288 | 48 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 48 | return AggregateFunctionPtr(result.release()); | 290 | 48 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE3ELS3_3ENS_28AggregateFunctionProductDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE4ELS3_4ENS_28AggregateFunctionProductDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE5ELS3_5ENS_28AggregateFunctionProductDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 24 | TArgs&&... args) { | 267 | 24 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 24 | if (have_nullable(argument_types_)) { | 274 | 24 | std::visit( | 275 | 24 | [&](auto result_is_nullable) { | 276 | 24 | if (attr.enable_aggregate_function_null_v2) { | 277 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 24 | AggregateFunctionTemplate>( | 279 | 24 | result.release(), argument_types_, attr.is_window_function)); | 280 | 24 | } else { | 281 | 24 | result.reset(new NullableT<false, result_is_nullable, | 282 | 24 | AggregateFunctionTemplate>( | 283 | 24 | result.release(), argument_types_, attr.is_window_function)); | 284 | 24 | } | 285 | 24 | }, | 286 | 24 | make_bool_variant(result_is_nullable)); | 287 | 24 | } | 288 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 24 | return AggregateFunctionPtr(result.release()); | 290 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 16 | std::visit( | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, | 286 | 16 | make_bool_variant(result_is_nullable)); | 287 | 16 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 16 | TArgs&&... args) { | 267 | 16 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 16 | if (have_nullable(argument_types_)) { | 274 | 16 | std::visit( | 275 | 16 | [&](auto result_is_nullable) { | 276 | 16 | if (attr.enable_aggregate_function_null_v2) { | 277 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 16 | AggregateFunctionTemplate>( | 279 | 16 | result.release(), argument_types_, attr.is_window_function)); | 280 | 16 | } else { | 281 | 16 | result.reset(new NullableT<false, result_is_nullable, | 282 | 16 | AggregateFunctionTemplate>( | 283 | 16 | result.release(), argument_types_, attr.is_window_function)); | 284 | 16 | } | 285 | 16 | }, | 286 | 16 | make_bool_variant(result_is_nullable)); | 287 | 16 | } | 288 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 16 | return AggregateFunctionPtr(result.release()); | 290 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 40 | TArgs&&... args) { | 267 | 40 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 40 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 40 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 40 | if (have_nullable(argument_types_)) { | 274 | 40 | std::visit( | 275 | 40 | [&](auto result_is_nullable) { | 276 | 40 | if (attr.enable_aggregate_function_null_v2) { | 277 | 40 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 40 | AggregateFunctionTemplate>( | 279 | 40 | result.release(), argument_types_, attr.is_window_function)); | 280 | 40 | } else { | 281 | 40 | result.reset(new NullableT<false, result_is_nullable, | 282 | 40 | AggregateFunctionTemplate>( | 283 | 40 | result.release(), argument_types_, attr.is_window_function)); | 284 | 40 | } | 285 | 40 | }, | 286 | 40 | make_bool_variant(result_is_nullable)); | 287 | 40 | } | 288 | 40 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 40 | return AggregateFunctionPtr(result.release()); | 290 | 40 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 266 | 125 | TArgs&&... args) { | 267 | 125 | if (!(argument_types_.size() == 1)) { | 268 | 0 | throw doris::Exception(Status::InternalError( | 269 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 270 | 0 | } | 271 | 125 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 272 | 125 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 273 | 125 | if (have_nullable(argument_types_)) { | 274 | 125 | std::visit( | 275 | 125 | [&](auto result_is_nullable) { | 276 | 125 | if (attr.enable_aggregate_function_null_v2) { | 277 | 125 | result.reset(new NullableV2T<false, result_is_nullable, | 278 | 125 | AggregateFunctionTemplate>( | 279 | 125 | result.release(), argument_types_, attr.is_window_function)); | 280 | 125 | } else { | 281 | 125 | result.reset(new NullableT<false, result_is_nullable, | 282 | 125 | AggregateFunctionTemplate>( | 283 | 125 | result.release(), argument_types_, attr.is_window_function)); | 284 | 125 | } | 285 | 125 | }, | 286 | 125 | make_bool_variant(result_is_nullable)); | 287 | 125 | } | 288 | 125 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 289 | 125 | return AggregateFunctionPtr(result.release()); | 290 | 125 | } |
|
291 | | |
292 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
293 | | static AggregateFunctionPtr create_unary_arguments_return_not_nullable( |
294 | | const DataTypes& argument_types_, const bool result_is_nullable, |
295 | 27.1k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
296 | 27.1k | if (!(argument_types_.size() == 1)) { |
297 | 0 | throw doris::Exception(Status::InternalError( |
298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); |
299 | 0 | } |
300 | 27.1k | if (!attr.is_foreach && result_is_nullable) { |
301 | 0 | throw doris::Exception( |
302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " |
303 | 0 | "result_is_nullable must be false")); |
304 | 0 | } |
305 | 27.1k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
306 | 27.1k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
307 | 27.1k | if (have_nullable(argument_types_)) { |
308 | 15.6k | if (attr.enable_aggregate_function_null_v2) { |
309 | 14.4k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
310 | 14.4k | result.release(), argument_types_, attr.is_window_function)); |
311 | 14.4k | } else { |
312 | 1.14k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
313 | 1.14k | result.release(), argument_types_, attr.is_window_function)); |
314 | 1.14k | } |
315 | 15.6k | } |
316 | 27.1k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
317 | 27.1k | return AggregateFunctionPtr(result.release()); |
318 | 27.1k | } Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 448 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 448 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 448 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 448 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 448 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 448 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 448 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 448 | return AggregateFunctionPtr(result.release()); | 318 | 448 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 4 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 4 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 4 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 4 | return AggregateFunctionPtr(result.release()); | 318 | 4 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 18 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 18 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 18 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 18 | return AggregateFunctionPtr(result.release()); | 318 | 18 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 6 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 6 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 6 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 6 | return AggregateFunctionPtr(result.release()); | 318 | 6 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 6 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 6 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 6 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 6 | return AggregateFunctionPtr(result.release()); | 318 | 6 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_29GroupArrayStringIntersectDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 15 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 15 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 15 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 15 | return AggregateFunctionPtr(result.release()); | 318 | 15 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 23 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 23 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 23 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 23 | return AggregateFunctionPtr(result.release()); | 318 | 23 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 16 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 16 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 16 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 16 | return AggregateFunctionPtr(result.release()); | 318 | 16 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 4 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 4 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 4 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 4 | return AggregateFunctionPtr(result.release()); | 318 | 4 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 4 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 4 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 4 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 4 | return AggregateFunctionPtr(result.release()); | 318 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2 | return AggregateFunctionPtr(result.release()); | 318 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_25GroupArrayStringUnionDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 12 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 12 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 12 | if (have_nullable(argument_types_)) { | 308 | 0 | if (attr.enable_aggregate_function_null_v2) { | 309 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 0 | result.release(), argument_types_, attr.is_window_function)); | 311 | 0 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 0 | } | 316 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 12 | return AggregateFunctionPtr(result.release()); | 318 | 12 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 116 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 116 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 116 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 116 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 116 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 116 | if (have_nullable(argument_types_)) { | 308 | 116 | if (attr.enable_aggregate_function_null_v2) { | 309 | 116 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 116 | result.release(), argument_types_, attr.is_window_function)); | 311 | 116 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 116 | } | 316 | 116 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 116 | return AggregateFunctionPtr(result.release()); | 318 | 116 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 319 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 319 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 319 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 319 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 319 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 319 | if (have_nullable(argument_types_)) { | 308 | 219 | if (attr.enable_aggregate_function_null_v2) { | 309 | 219 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 219 | result.release(), argument_types_, attr.is_window_function)); | 311 | 219 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 219 | } | 316 | 319 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 319 | return AggregateFunctionPtr(result.release()); | 318 | 319 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 340 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 340 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 340 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 340 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 340 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 340 | if (have_nullable(argument_types_)) { | 308 | 229 | if (attr.enable_aggregate_function_null_v2) { | 309 | 229 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 229 | result.release(), argument_types_, attr.is_window_function)); | 311 | 229 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 229 | } | 316 | 340 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 340 | return AggregateFunctionPtr(result.release()); | 318 | 340 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 10.3k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 10.3k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 10.3k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 10.3k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 10.3k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 10.3k | if (have_nullable(argument_types_)) { | 308 | 6.78k | if (attr.enable_aggregate_function_null_v2) { | 309 | 5.64k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 5.64k | result.release(), argument_types_, attr.is_window_function)); | 311 | 5.64k | } else { | 312 | 1.14k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 1.14k | result.release(), argument_types_, attr.is_window_function)); | 314 | 1.14k | } | 315 | 6.78k | } | 316 | 10.3k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 10.3k | return AggregateFunctionPtr(result.release()); | 318 | 10.3k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 2.99k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 2.99k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 2.99k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 2.99k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 2.99k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 2.99k | if (have_nullable(argument_types_)) { | 308 | 1.51k | if (attr.enable_aggregate_function_null_v2) { | 309 | 1.51k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 1.51k | result.release(), argument_types_, attr.is_window_function)); | 311 | 1.51k | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 1.51k | } | 316 | 2.99k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 2.99k | return AggregateFunctionPtr(result.release()); | 318 | 2.99k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 278 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 278 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 278 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 278 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 278 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 278 | if (have_nullable(argument_types_)) { | 308 | 155 | if (attr.enable_aggregate_function_null_v2) { | 309 | 155 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 155 | result.release(), argument_types_, attr.is_window_function)); | 311 | 155 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 155 | } | 316 | 278 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 278 | return AggregateFunctionPtr(result.release()); | 318 | 278 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 130 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 130 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 130 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 130 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 130 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 130 | if (have_nullable(argument_types_)) { | 308 | 130 | if (attr.enable_aggregate_function_null_v2) { | 309 | 130 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 130 | result.release(), argument_types_, attr.is_window_function)); | 311 | 130 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 130 | } | 316 | 130 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 130 | return AggregateFunctionPtr(result.release()); | 318 | 130 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 178 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 178 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 178 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 178 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 178 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 178 | if (have_nullable(argument_types_)) { | 308 | 172 | if (attr.enable_aggregate_function_null_v2) { | 309 | 172 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 172 | result.release(), argument_types_, attr.is_window_function)); | 311 | 172 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 172 | } | 316 | 178 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 178 | return AggregateFunctionPtr(result.release()); | 318 | 178 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 82 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 82 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 82 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 82 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 82 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 82 | if (have_nullable(argument_types_)) { | 308 | 78 | if (attr.enable_aggregate_function_null_v2) { | 309 | 78 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 78 | result.release(), argument_types_, attr.is_window_function)); | 311 | 78 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 78 | } | 316 | 82 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 82 | return AggregateFunctionPtr(result.release()); | 318 | 82 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 70 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 70 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 70 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 70 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 70 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 70 | if (have_nullable(argument_types_)) { | 308 | 70 | if (attr.enable_aggregate_function_null_v2) { | 309 | 70 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 70 | result.release(), argument_types_, attr.is_window_function)); | 311 | 70 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 70 | } | 316 | 70 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 70 | return AggregateFunctionPtr(result.release()); | 318 | 70 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 1.71k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 1.71k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 1.71k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 1.71k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 1.71k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 1.71k | if (have_nullable(argument_types_)) { | 308 | 936 | if (attr.enable_aggregate_function_null_v2) { | 309 | 936 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 936 | result.release(), argument_types_, attr.is_window_function)); | 311 | 936 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 936 | } | 316 | 1.71k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 1.71k | return AggregateFunctionPtr(result.release()); | 318 | 1.71k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 522 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 522 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 522 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 522 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 522 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 522 | if (have_nullable(argument_types_)) { | 308 | 406 | if (attr.enable_aggregate_function_null_v2) { | 309 | 406 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 406 | result.release(), argument_types_, attr.is_window_function)); | 311 | 406 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 406 | } | 316 | 522 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 522 | return AggregateFunctionPtr(result.release()); | 318 | 522 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 10 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 10 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 10 | if (have_nullable(argument_types_)) { | 308 | 10 | if (attr.enable_aggregate_function_null_v2) { | 309 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 10 | result.release(), argument_types_, attr.is_window_function)); | 311 | 10 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 10 | } | 316 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 10 | return AggregateFunctionPtr(result.release()); | 318 | 10 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 5.29k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 5.29k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 5.29k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 5.29k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 5.29k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 5.29k | if (have_nullable(argument_types_)) { | 308 | 3.12k | if (attr.enable_aggregate_function_null_v2) { | 309 | 3.12k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 3.12k | result.release(), argument_types_, attr.is_window_function)); | 311 | 18.4E | } else { | 312 | 18.4E | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 18.4E | result.release(), argument_types_, attr.is_window_function)); | 314 | 18.4E | } | 315 | 3.12k | } | 316 | 5.29k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 5.29k | return AggregateFunctionPtr(result.release()); | 318 | 5.29k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 3.45k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 3.45k | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 3.45k | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 3.45k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 3.45k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 3.45k | if (have_nullable(argument_types_)) { | 308 | 1.19k | if (attr.enable_aggregate_function_null_v2) { | 309 | 1.19k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 1.19k | result.release(), argument_types_, attr.is_window_function)); | 311 | 1.19k | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 1.19k | } | 316 | 3.45k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 3.45k | return AggregateFunctionPtr(result.release()); | 318 | 3.45k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 726 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 726 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 726 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 726 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 726 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 726 | if (have_nullable(argument_types_)) { | 308 | 478 | if (attr.enable_aggregate_function_null_v2) { | 309 | 478 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 478 | result.release(), argument_types_, attr.is_window_function)); | 311 | 478 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 478 | } | 316 | 726 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 726 | return AggregateFunctionPtr(result.release()); | 318 | 726 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 8 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 8 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 8 | if (have_nullable(argument_types_)) { | 308 | 8 | if (attr.enable_aggregate_function_null_v2) { | 309 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 8 | result.release(), argument_types_, attr.is_window_function)); | 311 | 8 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 8 | } | 316 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 8 | return AggregateFunctionPtr(result.release()); | 318 | 8 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 295 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 296 | 8 | if (!(argument_types_.size() == 1)) { | 297 | 0 | throw doris::Exception(Status::InternalError( | 298 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 299 | 0 | } | 300 | 8 | if (!attr.is_foreach && result_is_nullable) { | 301 | 0 | throw doris::Exception( | 302 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 303 | 0 | "result_is_nullable must be false")); | 304 | 0 | } | 305 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 306 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 307 | 8 | if (have_nullable(argument_types_)) { | 308 | 8 | if (attr.enable_aggregate_function_null_v2) { | 309 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 310 | 8 | result.release(), argument_types_, attr.is_window_function)); | 311 | 8 | } else { | 312 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 313 | 0 | result.release(), argument_types_, attr.is_window_function)); | 314 | 0 | } | 315 | 8 | } | 316 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 317 | 8 | return AggregateFunctionPtr(result.release()); | 318 | 8 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ |
319 | | |
320 | | /// AggregateFunctionTemplate will handle the nullable arguments, no need to use |
321 | | /// AggregateFunctionNullVariadicInline/AggregateFunctionNullUnaryInline |
322 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
323 | | static AggregateFunctionPtr create_ignore_nullable(const DataTypes& argument_types_, |
324 | | const bool /*result_is_nullable*/, |
325 | | const AggregateFunctionAttr& /*attr*/, |
326 | 2.40k | TArgs&&... args) { |
327 | 2.40k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( |
328 | 2.40k | std::forward<TArgs>(args)..., argument_types_); |
329 | 2.40k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
330 | 2.40k | return AggregateFunctionPtr(result.release()); |
331 | 2.40k | } _ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE0ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE1ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE2ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 26 | TArgs&&... args) { | 327 | 26 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 26 | std::forward<TArgs>(args)..., argument_types_); | 329 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 26 | return AggregateFunctionPtr(result.release()); | 331 | 26 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 19 | TArgs&&... args) { | 327 | 19 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 19 | std::forward<TArgs>(args)..., argument_types_); | 329 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 19 | return AggregateFunctionPtr(result.release()); | 331 | 19 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 9 | TArgs&&... args) { | 327 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 9 | std::forward<TArgs>(args)..., argument_types_); | 329 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 9 | return AggregateFunctionPtr(result.release()); | 331 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE3ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 14 | TArgs&&... args) { | 327 | 14 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 14 | std::forward<TArgs>(args)..., argument_types_); | 329 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 14 | return AggregateFunctionPtr(result.release()); | 331 | 14 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 26 | TArgs&&... args) { | 327 | 26 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 26 | std::forward<TArgs>(args)..., argument_types_); | 329 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 26 | return AggregateFunctionPtr(result.release()); | 331 | 26 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 19 | TArgs&&... args) { | 327 | 19 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 19 | std::forward<TArgs>(args)..., argument_types_); | 329 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 19 | return AggregateFunctionPtr(result.release()); | 331 | 19 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 9 | TArgs&&... args) { | 327 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 9 | std::forward<TArgs>(args)..., argument_types_); | 329 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 9 | return AggregateFunctionPtr(result.release()); | 331 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE4ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 14 | TArgs&&... args) { | 327 | 14 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 14 | std::forward<TArgs>(args)..., argument_types_); | 329 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 14 | return AggregateFunctionPtr(result.release()); | 331 | 14 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE5ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE6ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE7ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 6 | TArgs&&... args) { | 327 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 6 | std::forward<TArgs>(args)..., argument_types_); | 329 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 6 | return AggregateFunctionPtr(result.release()); | 331 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 11 | TArgs&&... args) { | 327 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 11 | std::forward<TArgs>(args)..., argument_types_); | 329 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 11 | return AggregateFunctionPtr(result.release()); | 331 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_21AggregateFunctionRegrILNS_13PrimitiveTypeE9ELNS_16RegrFunctionKindE8ELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS6_IKNS_9IDataTypeEESaISC_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 7 | TArgs&&... args) { | 327 | 7 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 7 | std::forward<TArgs>(args)..., argument_types_); | 329 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 7 | return AggregateFunctionPtr(result.release()); | 331 | 7 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 204 | TArgs&&... args) { | 327 | 204 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 204 | std::forward<TArgs>(args)..., argument_types_); | 329 | 204 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 204 | return AggregateFunctionPtr(result.release()); | 331 | 204 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 5 | TArgs&&... args) { | 327 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 5 | std::forward<TArgs>(args)..., argument_types_); | 329 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 5 | return AggregateFunctionPtr(result.release()); | 331 | 5 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 3 | TArgs&&... args) { | 327 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 3 | std::forward<TArgs>(args)..., argument_types_); | 329 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 3 | return AggregateFunctionPtr(result.release()); | 331 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE11EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE12EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE27EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE36EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 4 | TArgs&&... args) { | 327 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 4 | std::forward<TArgs>(args)..., argument_types_); | 329 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 4 | return AggregateFunctionPtr(result.release()); | 331 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 449 | TArgs&&... args) { | 327 | 449 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 449 | std::forward<TArgs>(args)..., argument_types_); | 329 | 449 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 449 | return AggregateFunctionPtr(result.release()); | 331 | 449 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 10 | TArgs&&... args) { | 327 | 10 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 10 | std::forward<TArgs>(args)..., argument_types_); | 329 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 10 | return AggregateFunctionPtr(result.release()); | 331 | 10 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE2EEELS4_2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE3EEELS4_3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE4EEELS4_4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE5EEELS4_5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 2 | TArgs&&... args) { | 327 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 2 | std::forward<TArgs>(args)..., argument_types_); | 329 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 2 | return AggregateFunctionPtr(result.release()); | 331 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE6EEELS4_6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 3 | TArgs&&... args) { | 327 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 3 | std::forward<TArgs>(args)..., argument_types_); | 329 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 3 | return AggregateFunctionPtr(result.release()); | 331 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE7EEELS4_7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE8EEELS4_8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE9EEELS4_9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE28EEELS4_28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE29EEELS4_29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE20EEELS4_20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE30EEELS4_30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE35EEELS4_35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE11EEELS4_11EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE25EEELS4_25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE26EEELS4_26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE12EEELS4_12EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE27EEELS4_27EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE42EEELS4_42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE36EEELS4_36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE37EEELS4_37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE23EEELS4_23EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 9 | TArgs&&... args) { | 327 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 9 | std::forward<TArgs>(args)..., argument_types_); | 329 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 9 | return AggregateFunctionPtr(result.release()); | 331 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionMapAggV2INS_29AggregateFunctionMapAggDataV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 1.31k | TArgs&&... args) { | 327 | 1.31k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 1.31k | std::forward<TArgs>(args)..., argument_types_); | 329 | 1.31k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 1.31k | return AggregateFunctionPtr(result.release()); | 331 | 1.31k | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 326 | 13 | TArgs&&... args) { | 327 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 328 | 13 | std::forward<TArgs>(args)..., argument_types_); | 329 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 330 | 13 | return AggregateFunctionPtr(result.release()); | 331 | 13 | } |
|
332 | | }; |
333 | | |
334 | | template <template <PrimitiveType> class AggregateFunctionTemplate> |
335 | | struct CurryDirect { |
336 | | template <PrimitiveType type> |
337 | | using T = AggregateFunctionTemplate<type>; |
338 | | }; |
339 | | template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate> |
340 | | struct CurryDirectWithResultType { |
341 | | template <PrimitiveType type, PrimitiveType result_type> |
342 | | using T = AggregateFunctionTemplate<type, result_type>; |
343 | | }; |
344 | | template <template <typename> class AggregateFunctionTemplate, template <PrimitiveType> class Data> |
345 | | struct CurryData { |
346 | | template <PrimitiveType Type> |
347 | | using T = AggregateFunctionTemplate<Data<Type>>; |
348 | | }; |
349 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
350 | | template <PrimitiveType> class Impl> |
351 | | struct CurryDataImpl { |
352 | | template <PrimitiveType Type> |
353 | | using T = AggregateFunctionTemplate<Data<Impl<Type>>>; |
354 | | }; |
355 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
356 | | template <PrimitiveType> class Data> |
357 | | struct CurryDirectAndData { |
358 | | template <PrimitiveType Type> |
359 | | using T = AggregateFunctionTemplate<Type, Data<Type>>; |
360 | | }; |
361 | | |
362 | | template <int define_index, PrimitiveType... AllowedTypes> |
363 | | struct creator_with_type_list_base { |
364 | | template <typename Class, typename... TArgs> |
365 | | static AggregateFunctionPtr create_base(const DataTypes& argument_types, |
366 | | const bool result_is_nullable, |
367 | 69.8k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
368 | 69.8k | auto create = [&]<PrimitiveType Ptype>() { |
369 | 68.9k | return creator_without_type::create<typename Class::template T<Ptype>>( |
370 | 68.9k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
371 | 68.9k | }; _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 3.72k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3.72k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3.72k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3.72k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 39 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 39 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 39 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 39 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 8.44k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8.44k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8.44k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8.44k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 2.53k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2.53k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2.53k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2.53k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 78 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 78 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 78 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 78 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 24 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 24 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 24 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 24 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 344 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 344 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 344 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 344 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 83 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 83 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 83 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 83 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 29 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 29 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 29 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 29 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1.24k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.24k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.24k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.24k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 404 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 404 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 404 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 404 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 207 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 207 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 207 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 207 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 697 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 697 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 697 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 697 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 58 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 58 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 58 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 58 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 587 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 587 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 587 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 587 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_17EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_41EEEDav Line | Count | Source | 368 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 16 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 29 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 29 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 29 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 29 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 451 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 451 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 451 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 451 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 452 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 452 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 452 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 452 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 452 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 452 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 452 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 452 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 910 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 910 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 910 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 910 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 382 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 382 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 382 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 382 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 921 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 921 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 921 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 921 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 981 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 981 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 981 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 981 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1.20k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.20k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.20k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.20k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 3.81k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3.81k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3.81k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3.81k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 1.07k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.07k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.07k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.07k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 1.47k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.47k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.47k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.47k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 1.90k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.90k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.90k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.90k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 894 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 894 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 894 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 894 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 30 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 30 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 30 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 30 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1.25k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.25k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.25k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.25k | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 424 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 424 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 424 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 424 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 425 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 425 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 425 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 425 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 116 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 116 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 116 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 116 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 319 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 319 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 319 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 319 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 340 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 340 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 340 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 340 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 10.3k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10.3k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10.3k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10.3k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 2.99k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2.99k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2.99k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2.99k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 278 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 278 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 278 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 278 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 130 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 130 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 130 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 130 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 178 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 178 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 178 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 178 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_20EEEDav Line | Count | Source | 368 | 82 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 82 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 82 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 82 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 70 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 70 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 70 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 70 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 1.72k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.72k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.72k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.72k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 522 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 522 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 522 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 522 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 5.29k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 5.29k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 5.29k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 5.29k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 3.45k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3.45k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3.45k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3.45k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 726 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 726 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 726 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 726 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_36EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_37EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 1.62k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.62k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.62k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.62k | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 412 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 412 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 412 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 412 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 14 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 14 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 14 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 14 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 28 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 28 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 28 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 28 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 42 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 11 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 6 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 6 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 6 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 45 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 45 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 45 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 45 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 11 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 10 | }; |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 424 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 424 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 424 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 424 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 5 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 5 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 5 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 5 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 18 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 18 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 43 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 43 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 43 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 43 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 447 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 447 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 447 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 447 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 19 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 368 | 39 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 39 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 39 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 39 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_42EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 444 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 444 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 444 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 444 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 368 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_29EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_30EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_35EEEDav Line | Count | Source | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 457 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 457 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 457 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 457 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 446 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 446 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 446 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 446 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 441 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 441 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 441 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 441 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 7 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 7 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 7 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 60 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 60 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 60 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 60 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 36 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 42 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 36 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 36 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 40 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 56 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 56 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 56 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 56 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 368 | 50 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 50 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 50 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 50 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 46 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 46 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 46 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 46 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 42 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 69 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 69 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 69 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 69 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 368 | 24 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 24 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 24 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 24 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 368 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 16 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 368 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 16 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 368 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 40 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 368 | 125 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 125 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 125 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 125 | }; |
|
372 | 69.8k | AggregateFunctionPtr result = nullptr; |
373 | 69.8k | auto type = argument_types[define_index]->get_primitive_type(); |
374 | 69.8k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || |
375 | 69.8k | type == PrimitiveType::TYPE_JSONB) { |
376 | 3.58k | type = PrimitiveType::TYPE_VARCHAR; |
377 | 3.58k | } |
378 | | |
379 | 69.8k | ( |
380 | 909k | [&] { |
381 | 909k | if (type == AllowedTypes) { |
382 | 68.9k | result = create.template operator()<AllowedTypes>(); |
383 | 68.9k | } |
384 | 909k | }(), _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 3.72k | result = create.template operator()<AllowedTypes>(); | 383 | 3.72k | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 39 | result = create.template operator()<AllowedTypes>(); | 383 | 39 | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 8.44k | result = create.template operator()<AllowedTypes>(); | 383 | 8.44k | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 2.53k | result = create.template operator()<AllowedTypes>(); | 383 | 2.53k | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 78 | result = create.template operator()<AllowedTypes>(); | 383 | 78 | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 24 | result = create.template operator()<AllowedTypes>(); | 383 | 24 | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 344 | result = create.template operator()<AllowedTypes>(); | 383 | 344 | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 15.1k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 83 | result = create.template operator()<AllowedTypes>(); | 383 | 83 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 29 | result = create.template operator()<AllowedTypes>(); | 383 | 29 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 1.24k | result = create.template operator()<AllowedTypes>(); | 383 | 1.24k | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 404 | result = create.template operator()<AllowedTypes>(); | 383 | 404 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 207 | result = create.template operator()<AllowedTypes>(); | 383 | 207 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.96k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE16_clEv Line | Count | Source | 380 | 1.41k | [&] { | 381 | 1.41k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 1.41k | [&] { | 381 | 1.41k | if (type == AllowedTypes) { | 382 | 697 | result = create.template operator()<AllowedTypes>(); | 383 | 697 | } | 384 | 1.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 1.41k | [&] { | 381 | 1.41k | if (type == AllowedTypes) { | 382 | 58 | result = create.template operator()<AllowedTypes>(); | 383 | 58 | } | 384 | 1.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 587 | result = create.template operator()<AllowedTypes>(); | 383 | 587 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.41k | [&] { | 381 | 1.41k | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 1.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 1.42k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.42k | [&] { | 381 | 1.42k | if (type == AllowedTypes) { | 382 | 16 | result = create.template operator()<AllowedTypes>(); | 383 | 16 | } | 384 | 1.42k | }(), |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 561 | [&] { | 381 | 561 | if (type == AllowedTypes) { | 382 | 29 | result = create.template operator()<AllowedTypes>(); | 383 | 29 | } | 384 | 561 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 562 | [&] { | 381 | 562 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 562 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 562 | [&] { | 381 | 562 | if (type == AllowedTypes) { | 382 | 451 | result = create.template operator()<AllowedTypes>(); | 383 | 451 | } | 384 | 562 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 561 | [&] { | 381 | 561 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 561 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 561 | [&] { | 381 | 561 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 561 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 452 | result = create.template operator()<AllowedTypes>(); | 383 | 452 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 452 | result = create.template operator()<AllowedTypes>(); | 383 | 452 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 560 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 2.20k | [&] { | 381 | 2.20k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2.20k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 2.20k | [&] { | 381 | 2.20k | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 2.20k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 2.20k | [&] { | 381 | 2.20k | if (type == AllowedTypes) { | 382 | 910 | result = create.template operator()<AllowedTypes>(); | 383 | 910 | } | 384 | 2.20k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 2.20k | [&] { | 381 | 2.20k | if (type == AllowedTypes) { | 382 | 382 | result = create.template operator()<AllowedTypes>(); | 383 | 382 | } | 384 | 2.20k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 2.20k | [&] { | 381 | 2.20k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2.20k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 921 | result = create.template operator()<AllowedTypes>(); | 383 | 921 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 981 | result = create.template operator()<AllowedTypes>(); | 383 | 981 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.20k | result = create.template operator()<AllowedTypes>(); | 383 | 1.20k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 3.81k | result = create.template operator()<AllowedTypes>(); | 383 | 3.81k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.07k | result = create.template operator()<AllowedTypes>(); | 383 | 1.07k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.47k | result = create.template operator()<AllowedTypes>(); | 383 | 1.47k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.90k | result = create.template operator()<AllowedTypes>(); | 383 | 1.90k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 894 | result = create.template operator()<AllowedTypes>(); | 383 | 894 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 30 | result = create.template operator()<AllowedTypes>(); | 383 | 30 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1.25k | result = create.template operator()<AllowedTypes>(); | 383 | 1.25k | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13.5k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 12 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 432 | [&] { | 381 | 432 | if (type == AllowedTypes) { | 382 | 424 | result = create.template operator()<AllowedTypes>(); | 383 | 424 | } | 384 | 432 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 433 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 429 | [&] { | 381 | 429 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 429 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 427 | [&] { | 381 | 427 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 427 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 429 | [&] { | 381 | 429 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 429 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 429 | [&] { | 381 | 429 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 429 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 429 | [&] { | 381 | 429 | if (type == AllowedTypes) { | 382 | 424 | result = create.template operator()<AllowedTypes>(); | 383 | 424 | } | 384 | 429 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 429 | [&] { | 381 | 429 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 429 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 428 | [&] { | 381 | 428 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 428 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 429 | [&] { | 381 | 429 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 429 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE17_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 116 | result = create.template operator()<AllowedTypes>(); | 383 | 116 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE16_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 319 | result = create.template operator()<AllowedTypes>(); | 383 | 319 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 340 | result = create.template operator()<AllowedTypes>(); | 383 | 340 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 10.3k | result = create.template operator()<AllowedTypes>(); | 383 | 10.3k | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 2.99k | result = create.template operator()<AllowedTypes>(); | 383 | 2.99k | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 278 | result = create.template operator()<AllowedTypes>(); | 383 | 278 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 130 | result = create.template operator()<AllowedTypes>(); | 383 | 130 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 178 | result = create.template operator()<AllowedTypes>(); | 383 | 178 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 82 | result = create.template operator()<AllowedTypes>(); | 383 | 82 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 70 | result = create.template operator()<AllowedTypes>(); | 383 | 70 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 1.71k | result = create.template operator()<AllowedTypes>(); | 383 | 1.71k | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 522 | result = create.template operator()<AllowedTypes>(); | 383 | 522 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 5.29k | result = create.template operator()<AllowedTypes>(); | 383 | 5.29k | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 3.45k | result = create.template operator()<AllowedTypes>(); | 383 | 3.45k | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 726 | result = create.template operator()<AllowedTypes>(); | 383 | 726 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 26.6k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 1.62k | [&] { | 381 | 1.62k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.62k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 1.62k | [&] { | 381 | 1.62k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.62k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 1.62k | [&] { | 381 | 1.62k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.62k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 1.62k | [&] { | 381 | 1.62k | if (type == AllowedTypes) { | 382 | 1.62k | result = create.template operator()<AllowedTypes>(); | 383 | 1.62k | } | 384 | 1.62k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 1.61k | [&] { | 381 | 1.61k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.61k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 1.61k | [&] { | 381 | 1.61k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.61k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 1.61k | [&] { | 381 | 1.61k | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 1.61k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 412 | result = create.template operator()<AllowedTypes>(); | 383 | 412 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 413 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 14 | result = create.template operator()<AllowedTypes>(); | 383 | 14 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 28 | result = create.template operator()<AllowedTypes>(); | 383 | 28 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 42 | result = create.template operator()<AllowedTypes>(); | 383 | 42 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 11 | result = create.template operator()<AllowedTypes>(); | 383 | 11 | } | 384 | 107 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 6 | result = create.template operator()<AllowedTypes>(); | 383 | 6 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 45 | result = create.template operator()<AllowedTypes>(); | 383 | 45 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 87 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 3 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 11 | result = create.template operator()<AllowedTypes>(); | 383 | 11 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 11 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 434 | [&] { | 381 | 434 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 434 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 438 | [&] { | 381 | 438 | if (type == AllowedTypes) { | 382 | 10 | result = create.template operator()<AllowedTypes>(); | 383 | 10 | } | 384 | 438 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 437 | [&] { | 381 | 437 | if (type == AllowedTypes) { | 382 | 424 | result = create.template operator()<AllowedTypes>(); | 383 | 424 | } | 384 | 437 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 435 | [&] { | 381 | 435 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 435 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 436 | [&] { | 381 | 436 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 436 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 5 | result = create.template operator()<AllowedTypes>(); | 383 | 5 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 18 | result = create.template operator()<AllowedTypes>(); | 383 | 18 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 43 | result = create.template operator()<AllowedTypes>(); | 383 | 43 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE14_clEv Line | Count | Source | 380 | 707 | [&] { | 381 | 707 | if (type == AllowedTypes) { | 382 | 4 | result = create.template operator()<AllowedTypes>(); | 383 | 4 | } | 384 | 707 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 380 | 706 | [&] { | 381 | 706 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 706 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 380 | 707 | [&] { | 381 | 707 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 707 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 447 | result = create.template operator()<AllowedTypes>(); | 383 | 447 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 706 | [&] { | 381 | 706 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 706 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 706 | [&] { | 381 | 706 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 706 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 706 | [&] { | 381 | 706 | if (type == AllowedTypes) { | 382 | 20 | result = create.template operator()<AllowedTypes>(); | 383 | 20 | } | 384 | 706 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 707 | [&] { | 381 | 707 | if (type == AllowedTypes) { | 382 | 19 | result = create.template operator()<AllowedTypes>(); | 383 | 19 | } | 384 | 707 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 39 | result = create.template operator()<AllowedTypes>(); | 383 | 39 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 708 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 1 | result = create.template operator()<AllowedTypes>(); | 383 | 1 | } | 384 | 13 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 444 | result = create.template operator()<AllowedTypes>(); | 383 | 444 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 21 | result = create.template operator()<AllowedTypes>(); | 383 | 21 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 578 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 577 | [&] { | 381 | 577 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 577 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 457 | [&] { | 381 | 457 | if (type == AllowedTypes) { | 382 | 457 | result = create.template operator()<AllowedTypes>(); | 383 | 457 | } | 384 | 457 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 26 | [&] { | 381 | 26 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 26 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 446 | [&] { | 381 | 446 | if (type == AllowedTypes) { | 382 | 446 | result = create.template operator()<AllowedTypes>(); | 383 | 446 | } | 384 | 446 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 441 | [&] { | 381 | 441 | if (type == AllowedTypes) { | 382 | 441 | result = create.template operator()<AllowedTypes>(); | 383 | 441 | } | 384 | 441 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 7 | [&] { | 381 | 7 | if (type == AllowedTypes) { | 382 | 7 | result = create.template operator()<AllowedTypes>(); | 383 | 7 | } | 384 | 7 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 8 | [&] { | 381 | 8 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 8 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 60 | result = create.template operator()<AllowedTypes>(); | 383 | 60 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 36 | result = create.template operator()<AllowedTypes>(); | 383 | 36 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 42 | result = create.template operator()<AllowedTypes>(); | 383 | 42 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 36 | result = create.template operator()<AllowedTypes>(); | 383 | 36 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 36 | result = create.template operator()<AllowedTypes>(); | 383 | 36 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 40 | result = create.template operator()<AllowedTypes>(); | 383 | 40 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 56 | result = create.template operator()<AllowedTypes>(); | 383 | 56 | } | 384 | 306 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 50 | result = create.template operator()<AllowedTypes>(); | 383 | 50 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 46 | result = create.template operator()<AllowedTypes>(); | 383 | 46 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 38 | result = create.template operator()<AllowedTypes>(); | 383 | 38 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 42 | result = create.template operator()<AllowedTypes>(); | 383 | 42 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 69 | result = create.template operator()<AllowedTypes>(); | 383 | 69 | } | 384 | 321 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 0 | result = create.template operator()<AllowedTypes>(); | 383 | 0 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 24 | result = create.template operator()<AllowedTypes>(); | 383 | 24 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 16 | result = create.template operator()<AllowedTypes>(); | 383 | 16 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 16 | result = create.template operator()<AllowedTypes>(); | 383 | 16 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 40 | result = create.template operator()<AllowedTypes>(); | 383 | 40 | } | 384 | 221 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 125 | result = create.template operator()<AllowedTypes>(); | 383 | 125 | } | 384 | 221 | }(), |
|
385 | 69.8k | ...); |
386 | | |
387 | 69.8k | return result; |
388 | 69.8k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_26AggregateFunctionSumSimpleEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 15.1k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 15.1k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 15.1k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 15.1k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 15.1k | }; | 372 | 15.1k | AggregateFunctionPtr result = nullptr; | 373 | 15.1k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 15.1k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 15.1k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 15.1k | ( | 380 | 15.1k | [&] { | 381 | 15.1k | if (type == AllowedTypes) { | 382 | 15.1k | result = create.template operator()<AllowedTypes>(); | 383 | 15.1k | } | 384 | 15.1k | }(), | 385 | 15.1k | ...); | 386 | | | 387 | 15.1k | return result; | 388 | 15.1k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.96k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.96k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.96k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.96k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.96k | }; | 372 | 1.96k | AggregateFunctionPtr result = nullptr; | 373 | 1.96k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.96k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.96k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 1.96k | ( | 380 | 1.96k | [&] { | 381 | 1.96k | if (type == AllowedTypes) { | 382 | 1.96k | result = create.template operator()<AllowedTypes>(); | 383 | 1.96k | } | 384 | 1.96k | }(), | 385 | 1.96k | ...); | 386 | | | 387 | 1.96k | return result; | 388 | 1.96k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE11create_baseINS_18CurryDirectAndDataINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.41k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.41k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.41k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.41k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.41k | }; | 372 | 1.41k | AggregateFunctionPtr result = nullptr; | 373 | 1.41k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.41k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.41k | type == PrimitiveType::TYPE_JSONB) { | 376 | 555 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 555 | } | 378 | | | 379 | 1.41k | ( | 380 | 1.41k | [&] { | 381 | 1.41k | if (type == AllowedTypes) { | 382 | 1.41k | result = create.template operator()<AllowedTypes>(); | 383 | 1.41k | } | 384 | 1.41k | }(), | 385 | 1.41k | ...); | 386 | | | 387 | 1.41k | return result; | 388 | 1.41k | } |
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE11create_baseINS_18CurryDirectAndDataINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 562 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 562 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 562 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 562 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 562 | }; | 372 | 562 | AggregateFunctionPtr result = nullptr; | 373 | 562 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 562 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 562 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 562 | ( | 380 | 562 | [&] { | 381 | 562 | if (type == AllowedTypes) { | 382 | 562 | result = create.template operator()<AllowedTypes>(); | 383 | 562 | } | 384 | 562 | }(), | 385 | 562 | ...); | 386 | | | 387 | 562 | return result; | 388 | 562 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 560 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 560 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 560 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 560 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 560 | }; | 372 | 560 | AggregateFunctionPtr result = nullptr; | 373 | 560 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 560 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 560 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 560 | ( | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 560 | result = create.template operator()<AllowedTypes>(); | 383 | 560 | } | 384 | 560 | }(), | 385 | 560 | ...); | 386 | | | 387 | 560 | return result; | 388 | 560 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 560 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 560 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 560 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 560 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 560 | }; | 372 | 560 | AggregateFunctionPtr result = nullptr; | 373 | 560 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 560 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 560 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 560 | ( | 380 | 560 | [&] { | 381 | 560 | if (type == AllowedTypes) { | 382 | 560 | result = create.template operator()<AllowedTypes>(); | 383 | 560 | } | 384 | 560 | }(), | 385 | 560 | ...); | 386 | | | 387 | 560 | return result; | 388 | 560 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 2.20k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 2.20k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2.20k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2.20k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2.20k | }; | 372 | 2.20k | AggregateFunctionPtr result = nullptr; | 373 | 2.20k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 2.20k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 2.20k | type == PrimitiveType::TYPE_JSONB) { | 376 | 399 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 399 | } | 378 | | | 379 | 2.20k | ( | 380 | 2.20k | [&] { | 381 | 2.20k | if (type == AllowedTypes) { | 382 | 2.20k | result = create.template operator()<AllowedTypes>(); | 383 | 2.20k | } | 384 | 2.20k | }(), | 385 | 2.20k | ...); | 386 | | | 387 | 2.20k | return result; | 388 | 2.20k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionSumSimpleReaderEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 13.5k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 13.5k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13.5k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13.5k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13.5k | }; | 372 | 13.5k | AggregateFunctionPtr result = nullptr; | 373 | 13.5k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 13.5k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 13.5k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 13.5k | ( | 380 | 13.5k | [&] { | 381 | 13.5k | if (type == AllowedTypes) { | 382 | 13.5k | result = create.template operator()<AllowedTypes>(); | 383 | 13.5k | } | 384 | 13.5k | }(), | 385 | 13.5k | ...); | 386 | | | 387 | 13.5k | return result; | 388 | 13.5k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 12 | }; | 372 | 12 | AggregateFunctionPtr result = nullptr; | 373 | 12 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 12 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 12 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 12 | ( | 380 | 12 | [&] { | 381 | 12 | if (type == AllowedTypes) { | 382 | 12 | result = create.template operator()<AllowedTypes>(); | 383 | 12 | } | 384 | 12 | }(), | 385 | 12 | ...); | 386 | | | 387 | 12 | return result; | 388 | 12 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 433 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 433 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 433 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 433 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 433 | }; | 372 | 433 | AggregateFunctionPtr result = nullptr; | 373 | 433 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 433 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 433 | type == PrimitiveType::TYPE_JSONB) { | 376 | 270 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 270 | } | 378 | | | 379 | 433 | ( | 380 | 433 | [&] { | 381 | 433 | if (type == AllowedTypes) { | 382 | 433 | result = create.template operator()<AllowedTypes>(); | 383 | 433 | } | 384 | 433 | }(), | 385 | 433 | ...); | 386 | | | 387 | 433 | return result; | 388 | 433 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 2 | }; | 372 | 2 | AggregateFunctionPtr result = nullptr; | 373 | 2 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 2 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 2 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 2 | ( | 380 | 2 | [&] { | 381 | 2 | if (type == AllowedTypes) { | 382 | 2 | result = create.template operator()<AllowedTypes>(); | 383 | 2 | } | 384 | 2 | }(), | 385 | 2 | ...); | 386 | | | 387 | 2 | return result; | 388 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 430 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 430 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 430 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 430 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 430 | }; | 372 | 430 | AggregateFunctionPtr result = nullptr; | 373 | 430 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 430 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 430 | type == PrimitiveType::TYPE_JSONB) { | 376 | 272 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 272 | } | 378 | | | 379 | 430 | ( | 380 | 430 | [&] { | 381 | 430 | if (type == AllowedTypes) { | 382 | 430 | result = create.template operator()<AllowedTypes>(); | 383 | 430 | } | 384 | 430 | }(), | 385 | 430 | ...); | 386 | | | 387 | 430 | return result; | 388 | 430 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE11create_baseINS_11CurryDirectINS_36AggregateFunctionApproxCountDistinctEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 26.6k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 26.6k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26.6k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26.6k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26.6k | }; | 372 | 26.6k | AggregateFunctionPtr result = nullptr; | 373 | 26.6k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 26.6k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 26.6k | type == PrimitiveType::TYPE_JSONB) { | 376 | 2.02k | type = PrimitiveType::TYPE_VARCHAR; | 377 | 2.02k | } | 378 | | | 379 | 26.6k | ( | 380 | 26.6k | [&] { | 381 | 26.6k | if (type == AllowedTypes) { | 382 | 26.6k | result = create.template operator()<AllowedTypes>(); | 383 | 26.6k | } | 384 | 26.6k | }(), | 385 | 26.6k | ...); | 386 | | | 387 | 26.6k | return result; | 388 | 26.6k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 1.62k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 1.62k | auto create = [&]<PrimitiveType Ptype>() { | 369 | 1.62k | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 1.62k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 1.62k | }; | 372 | 1.62k | AggregateFunctionPtr result = nullptr; | 373 | 1.62k | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 1.62k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 1.62k | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 1.62k | ( | 380 | 1.62k | [&] { | 381 | 1.62k | if (type == AllowedTypes) { | 382 | 1.62k | result = create.template operator()<AllowedTypes>(); | 383 | 1.62k | } | 384 | 1.62k | }(), | 385 | 1.62k | ...); | 386 | | | 387 | 1.62k | return result; | 388 | 1.62k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 413 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 413 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 413 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 413 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 413 | }; | 372 | 413 | AggregateFunctionPtr result = nullptr; | 373 | 413 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 413 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 413 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 413 | ( | 380 | 413 | [&] { | 381 | 413 | if (type == AllowedTypes) { | 382 | 413 | result = create.template operator()<AllowedTypes>(); | 383 | 413 | } | 384 | 413 | }(), | 385 | 413 | ...); | 386 | | | 387 | 413 | return result; | 388 | 413 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29AggregateFunctionPercentileV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 107 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 107 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 107 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 107 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 107 | }; | 372 | 107 | AggregateFunctionPtr result = nullptr; | 373 | 107 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 107 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 107 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 107 | ( | 380 | 107 | [&] { | 381 | 107 | if (type == AllowedTypes) { | 382 | 107 | result = create.template operator()<AllowedTypes>(); | 383 | 107 | } | 384 | 107 | }(), | 385 | 107 | ...); | 386 | | | 387 | 107 | return result; | 388 | 107 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_34AggregateFunctionPercentileArrayV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 87 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 87 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 87 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 87 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 87 | }; | 372 | 87 | AggregateFunctionPtr result = nullptr; | 373 | 87 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 87 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 87 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 87 | ( | 380 | 87 | [&] { | 381 | 87 | if (type == AllowedTypes) { | 382 | 87 | result = create.template operator()<AllowedTypes>(); | 383 | 87 | } | 384 | 87 | }(), | 385 | 87 | ...); | 386 | | | 387 | 87 | return result; | 388 | 87 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 3 | }; | 372 | 3 | AggregateFunctionPtr result = nullptr; | 373 | 3 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 3 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 3 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 3 | ( | 380 | 3 | [&] { | 381 | 3 | if (type == AllowedTypes) { | 382 | 3 | result = create.template operator()<AllowedTypes>(); | 383 | 3 | } | 384 | 3 | }(), | 385 | 3 | ...); | 386 | | | 387 | 3 | return result; | 388 | 3 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 11 | }; | 372 | 11 | AggregateFunctionPtr result = nullptr; | 373 | 11 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 11 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 11 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 11 | ( | 380 | 11 | [&] { | 381 | 11 | if (type == AllowedTypes) { | 382 | 11 | result = create.template operator()<AllowedTypes>(); | 383 | 11 | } | 384 | 11 | }(), | 385 | 11 | ...); | 386 | | | 387 | 11 | return result; | 388 | 11 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 435 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 435 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 435 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 435 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 435 | }; | 372 | 435 | AggregateFunctionPtr result = nullptr; | 373 | 435 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 436 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 435 | type == PrimitiveType::TYPE_JSONB) { | 376 | 2 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 2 | } | 378 | | | 379 | 435 | ( | 380 | 435 | [&] { | 381 | 435 | if (type == AllowedTypes) { | 382 | 435 | result = create.template operator()<AllowedTypes>(); | 383 | 435 | } | 384 | 435 | }(), | 385 | 435 | ...); | 386 | | | 387 | 435 | return result; | 388 | 435 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 168 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 168 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 168 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 168 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 168 | }; | 372 | 168 | AggregateFunctionPtr result = nullptr; | 373 | 168 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 168 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 168 | type == PrimitiveType::TYPE_JSONB) { | 376 | 23 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 23 | } | 378 | | | 379 | 168 | ( | 380 | 168 | [&] { | 381 | 168 | if (type == AllowedTypes) { | 382 | 168 | result = create.template operator()<AllowedTypes>(); | 383 | 168 | } | 384 | 168 | }(), | 385 | 168 | ...); | 386 | | | 387 | 168 | return result; | 388 | 168 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 708 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 708 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 708 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 708 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 708 | }; | 372 | 708 | AggregateFunctionPtr result = nullptr; | 373 | 708 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 708 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 708 | type == PrimitiveType::TYPE_JSONB) { | 376 | 39 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 39 | } | 378 | | | 379 | 708 | ( | 380 | 708 | [&] { | 381 | 708 | if (type == AllowedTypes) { | 382 | 708 | result = create.template operator()<AllowedTypes>(); | 383 | 708 | } | 384 | 708 | }(), | 385 | 708 | ...); | 386 | | | 387 | 708 | return result; | 388 | 708 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 13 | }; | 372 | 13 | AggregateFunctionPtr result = nullptr; | 373 | 13 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 13 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 13 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 13 | ( | 380 | 13 | [&] { | 381 | 13 | if (type == AllowedTypes) { | 382 | 13 | result = create.template operator()<AllowedTypes>(); | 383 | 13 | } | 384 | 13 | }(), | 385 | 13 | ...); | 386 | | | 387 | 13 | return result; | 388 | 13 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE11create_baseINS_18CurryDirectAndDataINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 578 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 578 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 578 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 578 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 578 | }; | 372 | 578 | AggregateFunctionPtr result = nullptr; | 373 | 578 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 578 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 578 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 578 | ( | 380 | 578 | [&] { | 381 | 578 | if (type == AllowedTypes) { | 382 | 578 | result = create.template operator()<AllowedTypes>(); | 383 | 578 | } | 384 | 578 | }(), | 385 | 578 | ...); | 386 | | | 387 | 578 | return result; | 388 | 578 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 457 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 457 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 457 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 457 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 457 | }; | 372 | 457 | AggregateFunctionPtr result = nullptr; | 373 | 457 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 457 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 457 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 457 | ( | 380 | 457 | [&] { | 381 | 457 | if (type == AllowedTypes) { | 382 | 457 | result = create.template operator()<AllowedTypes>(); | 383 | 457 | } | 384 | 457 | }(), | 385 | 457 | ...); | 386 | | | 387 | 457 | return result; | 388 | 457 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 26 | }; | 372 | 26 | AggregateFunctionPtr result = nullptr; | 373 | 26 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 26 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 26 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 26 | ( | 380 | 26 | [&] { | 381 | 26 | if (type == AllowedTypes) { | 382 | 26 | result = create.template operator()<AllowedTypes>(); | 383 | 26 | } | 384 | 26 | }(), | 385 | 26 | ...); | 386 | | | 387 | 26 | return result; | 388 | 26 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 446 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 446 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 446 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 446 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 446 | }; | 372 | 446 | AggregateFunctionPtr result = nullptr; | 373 | 446 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 446 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 446 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 446 | ( | 380 | 446 | [&] { | 381 | 446 | if (type == AllowedTypes) { | 382 | 446 | result = create.template operator()<AllowedTypes>(); | 383 | 446 | } | 384 | 446 | }(), | 385 | 446 | ...); | 386 | | | 387 | 446 | return result; | 388 | 446 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 442 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 442 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 442 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 442 | }; | 372 | 442 | AggregateFunctionPtr result = nullptr; | 373 | 442 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 442 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 442 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 442 | ( | 380 | 442 | [&] { | 381 | 442 | if (type == AllowedTypes) { | 382 | 442 | result = create.template operator()<AllowedTypes>(); | 383 | 442 | } | 384 | 442 | }(), | 385 | 442 | ...); | 386 | | | 387 | 442 | return result; | 388 | 442 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 7 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 7 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 7 | }; | 372 | 7 | AggregateFunctionPtr result = nullptr; | 373 | 7 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 7 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 7 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 7 | ( | 380 | 7 | [&] { | 381 | 7 | if (type == AllowedTypes) { | 382 | 7 | result = create.template operator()<AllowedTypes>(); | 383 | 7 | } | 384 | 7 | }(), | 385 | 7 | ...); | 386 | | | 387 | 7 | return result; | 388 | 7 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 8 | }; | 372 | 8 | AggregateFunctionPtr result = nullptr; | 373 | 8 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 8 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 8 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 8 | ( | 380 | 8 | [&] { | 381 | 8 | if (type == AllowedTypes) { | 382 | 8 | result = create.template operator()<AllowedTypes>(); | 383 | 8 | } | 384 | 8 | }(), | 385 | 8 | ...); | 386 | | | 387 | 8 | return result; | 388 | 8 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS6_2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 306 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 306 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 306 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 306 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 306 | }; | 372 | 306 | AggregateFunctionPtr result = nullptr; | 373 | 306 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 306 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 306 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 306 | ( | 380 | 306 | [&] { | 381 | 306 | if (type == AllowedTypes) { | 382 | 306 | result = create.template operator()<AllowedTypes>(); | 383 | 306 | } | 384 | 306 | }(), | 385 | 306 | ...); | 386 | | | 387 | 306 | return result; | 388 | 306 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS6_3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 321 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 321 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 321 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 321 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 321 | }; | 372 | 321 | AggregateFunctionPtr result = nullptr; | 373 | 321 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 321 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 321 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 321 | ( | 380 | 321 | [&] { | 381 | 321 | if (type == AllowedTypes) { | 382 | 321 | result = create.template operator()<AllowedTypes>(); | 383 | 321 | } | 384 | 321 | }(), | 385 | 321 | ...); | 386 | | | 387 | 321 | return result; | 388 | 321 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS6_4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorISC_IKNS_9IDataTypeEESaISI_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 367 | 221 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 368 | 221 | auto create = [&]<PrimitiveType Ptype>() { | 369 | 221 | return creator_without_type::create<typename Class::template T<Ptype>>( | 370 | 221 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 371 | 221 | }; | 372 | 221 | AggregateFunctionPtr result = nullptr; | 373 | 221 | auto type = argument_types[define_index]->get_primitive_type(); | 374 | 221 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 375 | 221 | type == PrimitiveType::TYPE_JSONB) { | 376 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 377 | 0 | } | 378 | | | 379 | 221 | ( | 380 | 221 | [&] { | 381 | 221 | if (type == AllowedTypes) { | 382 | 221 | result = create.template operator()<AllowedTypes>(); | 383 | 221 | } | 384 | 221 | }(), | 385 | 221 | ...); | 386 | | | 387 | 221 | return result; | 388 | 221 | } |
|
389 | | |
390 | | template <typename Class, typename... TArgs> |
391 | | static AggregateFunctionPtr create_base_with_result_type(const std::string& name, |
392 | | const DataTypes& argument_types, |
393 | | const DataTypePtr& result_type, |
394 | | const bool result_is_nullable, |
395 | | const AggregateFunctionAttr& attr, |
396 | 3.50k | TArgs&&... args) { |
397 | 3.50k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { |
398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && |
399 | 0 | ResultType < InputType) { |
400 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
401 | 0 | "agg function {} error, arg type {}, result type {}", name, |
402 | 0 | argument_types[define_index]->get_name(), |
403 | 0 | result_type->get_name()); |
404 | 0 | return nullptr; |
405 | 3.50k | } else { |
406 | 3.50k | return creator_without_type::create< |
407 | 3.50k | typename Class::template T<InputType, ResultType>>( |
408 | 3.50k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
409 | 3.50k | } |
410 | 3.50k | }; Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Line | Count | Source | 397 | 123 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 123 | } else { | 406 | 123 | return creator_without_type::create< | 407 | 123 | typename Class::template T<InputType, ResultType>>( | 408 | 123 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 123 | } | 410 | 123 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Line | Count | Source | 397 | 1.24k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 1.24k | } else { | 406 | 1.24k | return creator_without_type::create< | 407 | 1.24k | typename Class::template T<InputType, ResultType>>( | 408 | 1.24k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 1.24k | } | 410 | 1.24k | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Line | Count | Source | 397 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 18 | } else { | 406 | 18 | return creator_without_type::create< | 407 | 18 | typename Class::template T<InputType, ResultType>>( | 408 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 18 | } | 410 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 903 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 903 | } else { | 406 | 903 | return creator_without_type::create< | 407 | 903 | typename Class::template T<InputType, ResultType>>( | 408 | 903 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 903 | } | 410 | 903 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Line | Count | Source | 397 | 5 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 5 | } else { | 406 | 5 | return creator_without_type::create< | 407 | 5 | typename Class::template T<InputType, ResultType>>( | 408 | 5 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 5 | } | 410 | 5 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 113 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 113 | } else { | 406 | 113 | return creator_without_type::create< | 407 | 113 | typename Class::template T<InputType, ResultType>>( | 408 | 113 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 113 | } | 410 | 113 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Line | Count | Source | 397 | 85 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 85 | } else { | 406 | 85 | return creator_without_type::create< | 407 | 85 | typename Class::template T<InputType, ResultType>>( | 408 | 85 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 85 | } | 410 | 85 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Line | Count | Source | 397 | 2 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 2 | } else { | 406 | 2 | return creator_without_type::create< | 407 | 2 | typename Class::template T<InputType, ResultType>>( | 408 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 2 | } | 410 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Line | Count | Source | 397 | 640 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 640 | } else { | 406 | 640 | return creator_without_type::create< | 407 | 640 | typename Class::template T<InputType, ResultType>>( | 408 | 640 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 640 | } | 410 | 640 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Line | Count | Source | 397 | 2 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 2 | } else { | 406 | 2 | return creator_without_type::create< | 407 | 2 | typename Class::template T<InputType, ResultType>>( | 408 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 2 | } | 410 | 2 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 82 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 82 | } else { | 406 | 82 | return creator_without_type::create< | 407 | 82 | typename Class::template T<InputType, ResultType>>( | 408 | 82 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 82 | } | 410 | 82 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Line | Count | Source | 397 | 6 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 6 | } else { | 406 | 6 | return creator_without_type::create< | 407 | 6 | typename Class::template T<InputType, ResultType>>( | 408 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 6 | } | 410 | 6 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 83 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 83 | } else { | 406 | 83 | return creator_without_type::create< | 407 | 83 | typename Class::template T<InputType, ResultType>>( | 408 | 83 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 83 | } | 410 | 83 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 18 | } else { | 406 | 18 | return creator_without_type::create< | 407 | 18 | typename Class::template T<InputType, ResultType>>( | 408 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 18 | } | 410 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 46 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 46 | } else { | 406 | 46 | return creator_without_type::create< | 407 | 46 | typename Class::template T<InputType, ResultType>>( | 408 | 46 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 46 | } | 410 | 46 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Line | Count | Source | 397 | 4 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 4 | } else { | 406 | 4 | return creator_without_type::create< | 407 | 4 | typename Class::template T<InputType, ResultType>>( | 408 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 4 | } | 410 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Line | Count | Source | 397 | 6 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 6 | } else { | 406 | 6 | return creator_without_type::create< | 407 | 6 | typename Class::template T<InputType, ResultType>>( | 408 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 6 | } | 410 | 6 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Line | Count | Source | 397 | 1 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 1 | } else { | 406 | 1 | return creator_without_type::create< | 407 | 1 | typename Class::template T<InputType, ResultType>>( | 408 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 1 | } | 410 | 1 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Line | Count | Source | 397 | 7 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 7 | } else { | 406 | 7 | return creator_without_type::create< | 407 | 7 | typename Class::template T<InputType, ResultType>>( | 408 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 7 | } | 410 | 7 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 12 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 12 | } else { | 406 | 12 | return creator_without_type::create< | 407 | 12 | typename Class::template T<InputType, ResultType>>( | 408 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 12 | } | 410 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Line | Count | Source | 397 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 18 | } else { | 406 | 18 | return creator_without_type::create< | 407 | 18 | typename Class::template T<InputType, ResultType>>( | 408 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 18 | } | 410 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 15 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 15 | } else { | 406 | 15 | return creator_without_type::create< | 407 | 15 | typename Class::template T<InputType, ResultType>>( | 408 | 15 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 15 | } | 410 | 15 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_28ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_30EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_29ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_29EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_30EEEDav Line | Count | Source | 397 | 22 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 22 | } else { | 406 | 22 | return creator_without_type::create< | 407 | 22 | typename Class::template T<InputType, ResultType>>( | 408 | 22 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 22 | } | 410 | 22 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_30ELS1_35EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_28EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_29EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_30EEEDav _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_TnS1_vE_clILS1_35ELS1_35EEEDav Line | Count | Source | 397 | 48 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | | ResultType < InputType) { | 400 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | | "agg function {} error, arg type {}, result type {}", name, | 402 | | argument_types[define_index]->get_name(), | 403 | | result_type->get_name()); | 404 | | return nullptr; | 405 | 48 | } else { | 406 | 48 | return creator_without_type::create< | 407 | 48 | typename Class::template T<InputType, ResultType>>( | 408 | 48 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 48 | } | 410 | 48 | }; |
|
411 | 3.50k | AggregateFunctionPtr result = nullptr; |
412 | 3.50k | auto type = argument_types[define_index]->get_primitive_type(); |
413 | | |
414 | 3.50k | ( |
415 | 14.0k | [&] { |
416 | 14.0k | if (type == AllowedTypes) { |
417 | 3.50k | static_assert(is_decimalv3(AllowedTypes)); |
418 | 3.50k | auto call = [&](const auto& type) -> bool { |
419 | 3.50k | using DispatchType = std::decay_t<decltype(type)>; |
420 | 3.50k | result = |
421 | 3.50k | create.template operator()<AllowedTypes, DispatchType::PType>(); |
422 | 3.50k | return true; |
423 | 3.50k | }; Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 123 | auto call = [&](const auto& type) -> bool { | 419 | 123 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 123 | result = | 421 | 123 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 123 | return true; | 423 | 123 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 1.24k | auto call = [&](const auto& type) -> bool { | 419 | 1.24k | using DispatchType = std::decay_t<decltype(type)>; | 420 | 1.24k | result = | 421 | 1.24k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 1.24k | return true; | 423 | 1.24k | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 903 | auto call = [&](const auto& type) -> bool { | 419 | 903 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 903 | result = | 421 | 903 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 903 | return true; | 423 | 903 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 5 | auto call = [&](const auto& type) -> bool { | 419 | 5 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 5 | result = | 421 | 5 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 5 | return true; | 423 | 5 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 113 | auto call = [&](const auto& type) -> bool { | 419 | 113 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 113 | result = | 421 | 113 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 113 | return true; | 423 | 113 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 85 | auto call = [&](const auto& type) -> bool { | 419 | 85 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 85 | result = | 421 | 85 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 85 | return true; | 423 | 85 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 2 | auto call = [&](const auto& type) -> bool { | 419 | 2 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 2 | result = | 421 | 2 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 2 | return true; | 423 | 2 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 640 | auto call = [&](const auto& type) -> bool { | 419 | 640 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 640 | result = | 421 | 640 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 640 | return true; | 423 | 640 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 2 | auto call = [&](const auto& type) -> bool { | 419 | 2 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 2 | result = | 421 | 2 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 2 | return true; | 423 | 2 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ Line | Count | Source | 418 | 82 | auto call = [&](const auto& type) -> bool { | 419 | 82 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 82 | result = | 421 | 82 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 82 | return true; | 423 | 82 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 6 | auto call = [&](const auto& type) -> bool { | 419 | 6 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 6 | result = | 421 | 6 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 6 | return true; | 423 | 6 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS11_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS11_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS11_ Line | Count | Source | 418 | 83 | auto call = [&](const auto& type) -> bool { | 419 | 83 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 83 | result = | 421 | 83 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 83 | return true; | 423 | 83 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 46 | auto call = [&](const auto& type) -> bool { | 419 | 46 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 46 | result = | 421 | 46 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 46 | return true; | 423 | 46 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 4 | auto call = [&](const auto& type) -> bool { | 419 | 4 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 4 | result = | 421 | 4 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 4 | return true; | 423 | 4 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 6 | auto call = [&](const auto& type) -> bool { | 419 | 6 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 6 | result = | 421 | 6 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 6 | return true; | 423 | 6 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 1 | auto call = [&](const auto& type) -> bool { | 419 | 1 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 1 | result = | 421 | 1 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 1 | return true; | 423 | 1 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 7 | auto call = [&](const auto& type) -> bool { | 419 | 7 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 7 | result = | 421 | 7 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 7 | return true; | 423 | 7 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 12 | auto call = [&](const auto& type) -> bool { | 419 | 12 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 12 | result = | 421 | 12 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 12 | return true; | 423 | 12 | }; |
_ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 15 | auto call = [&](const auto& type) -> bool { | 419 | 15 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 15 | result = | 421 | 15 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 15 | return true; | 423 | 15 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ Line | Count | Source | 418 | 22 | auto call = [&](const auto& type) -> bool { | 419 | 22 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 22 | result = | 421 | 22 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 22 | return true; | 423 | 22 | }; |
Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_28EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_29EEEEEbS16_ Unexecuted instantiation: _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_30EEEEEbS16_ _ZZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEvENKUlRKT_E_clINS_16DispatchDataTypeILS1_35EEEEEbS16_ Line | Count | Source | 418 | 48 | auto call = [&](const auto& type) -> bool { | 419 | 48 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 48 | result = | 421 | 48 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 48 | return true; | 423 | 48 | }; |
|
424 | 3.50k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { |
425 | 0 | throw doris::Exception( |
426 | 0 | ErrorCode::INTERNAL_ERROR, |
427 | 0 | "agg function {} error, arg type {}, result type {}", name, |
428 | 0 | argument_types[define_index]->get_name(), |
429 | 0 | result_type->get_name()); |
430 | 0 | } |
431 | 3.50k | } |
432 | 14.0k | }(), _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 2.41k | [&] { | 416 | 2.41k | if (type == AllowedTypes) { | 417 | 123 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 123 | auto call = [&](const auto& type) -> bool { | 419 | 123 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 123 | result = | 421 | 123 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 123 | return true; | 423 | 123 | }; | 424 | 123 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 123 | } | 432 | 2.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 2.41k | [&] { | 416 | 2.41k | if (type == AllowedTypes) { | 417 | 1.26k | static_assert(is_decimalv3(AllowedTypes)); | 418 | 1.26k | auto call = [&](const auto& type) -> bool { | 419 | 1.26k | using DispatchType = std::decay_t<decltype(type)>; | 420 | 1.26k | result = | 421 | 1.26k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 1.26k | return true; | 423 | 1.26k | }; | 424 | 1.26k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 1.26k | } | 432 | 2.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 2.41k | [&] { | 416 | 2.41k | if (type == AllowedTypes) { | 417 | 908 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 908 | auto call = [&](const auto& type) -> bool { | 419 | 908 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 908 | result = | 421 | 908 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 908 | return true; | 423 | 908 | }; | 424 | 908 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 908 | } | 432 | 2.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 2.41k | [&] { | 416 | 2.41k | if (type == AllowedTypes) { | 417 | 113 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 113 | auto call = [&](const auto& type) -> bool { | 419 | 113 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 113 | result = | 421 | 113 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 113 | return true; | 423 | 113 | }; | 424 | 113 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 113 | } | 432 | 2.41k | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 900 | [&] { | 416 | 900 | if (type == AllowedTypes) { | 417 | 87 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 87 | auto call = [&](const auto& type) -> bool { | 419 | 87 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 87 | result = | 421 | 87 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 87 | return true; | 423 | 87 | }; | 424 | 87 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 87 | } | 432 | 900 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 900 | [&] { | 416 | 900 | if (type == AllowedTypes) { | 417 | 642 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 642 | auto call = [&](const auto& type) -> bool { | 419 | 642 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 642 | result = | 421 | 642 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 642 | return true; | 423 | 642 | }; | 424 | 642 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 642 | } | 432 | 900 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 900 | [&] { | 416 | 900 | if (type == AllowedTypes) { | 417 | 88 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 88 | auto call = [&](const auto& type) -> bool { | 419 | 88 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 88 | result = | 421 | 88 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 88 | return true; | 423 | 88 | }; | 424 | 88 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 88 | } | 432 | 900 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 900 | [&] { | 416 | 900 | if (type == AllowedTypes) { | 417 | 83 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 83 | auto call = [&](const auto& type) -> bool { | 419 | 83 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 83 | result = | 421 | 83 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 83 | return true; | 423 | 83 | }; | 424 | 83 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 83 | } | 432 | 900 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 18 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 18 | auto call = [&](const auto& type) -> bool { | 419 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 18 | result = | 421 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 18 | return true; | 423 | 18 | }; | 424 | 18 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 18 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 46 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 46 | auto call = [&](const auto& type) -> bool { | 419 | 46 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 46 | result = | 421 | 46 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 46 | return true; | 423 | 46 | }; | 424 | 46 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 46 | } | 432 | 64 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 10 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 10 | auto call = [&](const auto& type) -> bool { | 419 | 10 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 10 | result = | 421 | 10 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 10 | return true; | 423 | 10 | }; | 424 | 10 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 10 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 8 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 8 | auto call = [&](const auto& type) -> bool { | 419 | 8 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 8 | result = | 421 | 8 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 8 | return true; | 423 | 8 | }; | 424 | 8 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 8 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 30 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 30 | auto call = [&](const auto& type) -> bool { | 419 | 30 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 30 | result = | 421 | 30 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 30 | return true; | 423 | 30 | }; | 424 | 30 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 30 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 15 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 15 | auto call = [&](const auto& type) -> bool { | 419 | 15 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 15 | result = | 421 | 15 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 15 | return true; | 423 | 15 | }; | 424 | 15 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 15 | } | 432 | 63 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 70 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 0 | auto call = [&](const auto& type) -> bool { | 419 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 0 | result = | 421 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 0 | return true; | 423 | 0 | }; | 424 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 0 | } | 432 | 70 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 22 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 22 | auto call = [&](const auto& type) -> bool { | 419 | 22 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 22 | result = | 421 | 22 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 22 | return true; | 423 | 22 | }; | 424 | 22 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 22 | } | 432 | 70 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 48 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 48 | auto call = [&](const auto& type) -> bool { | 419 | 48 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 48 | result = | 421 | 48 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 48 | return true; | 423 | 48 | }; | 424 | 48 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 0 | throw doris::Exception( | 426 | 0 | ErrorCode::INTERNAL_ERROR, | 427 | 0 | "agg function {} error, arg type {}, result type {}", name, | 428 | 0 | argument_types[define_index]->get_name(), | 429 | 0 | result_type->get_name()); | 430 | 0 | } | 431 | 48 | } | 432 | 70 | }(), |
|
433 | 3.50k | ...); |
434 | | |
435 | 3.50k | return result; |
436 | 3.50k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_29AggregateFunctionSumDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 2.40k | TArgs&&... args) { | 397 | 2.40k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 2.40k | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 2.40k | ResultType < InputType) { | 400 | 2.40k | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 2.40k | "agg function {} error, arg type {}, result type {}", name, | 402 | 2.40k | argument_types[define_index]->get_name(), | 403 | 2.40k | result_type->get_name()); | 404 | 2.40k | return nullptr; | 405 | 2.40k | } else { | 406 | 2.40k | return creator_without_type::create< | 407 | 2.40k | typename Class::template T<InputType, ResultType>>( | 408 | 2.40k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 2.40k | } | 410 | 2.40k | }; | 411 | 2.40k | AggregateFunctionPtr result = nullptr; | 412 | 2.40k | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 2.40k | ( | 415 | 2.40k | [&] { | 416 | 2.40k | if (type == AllowedTypes) { | 417 | 2.40k | static_assert(is_decimalv3(AllowedTypes)); | 418 | 2.40k | auto call = [&](const auto& type) -> bool { | 419 | 2.40k | using DispatchType = std::decay_t<decltype(type)>; | 420 | 2.40k | result = | 421 | 2.40k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 2.40k | return true; | 423 | 2.40k | }; | 424 | 2.40k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 2.40k | throw doris::Exception( | 426 | 2.40k | ErrorCode::INTERNAL_ERROR, | 427 | 2.40k | "agg function {} error, arg type {}, result type {}", name, | 428 | 2.40k | argument_types[define_index]->get_name(), | 429 | 2.40k | result_type->get_name()); | 430 | 2.40k | } | 431 | 2.40k | } | 432 | 2.40k | }(), | 433 | 2.40k | ...); | 434 | | | 435 | 2.40k | return result; | 436 | 2.40k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_25AggregateFuncAvgDecimalV3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 900 | TArgs&&... args) { | 397 | 900 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 900 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 900 | ResultType < InputType) { | 400 | 900 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 900 | "agg function {} error, arg type {}, result type {}", name, | 402 | 900 | argument_types[define_index]->get_name(), | 403 | 900 | result_type->get_name()); | 404 | 900 | return nullptr; | 405 | 900 | } else { | 406 | 900 | return creator_without_type::create< | 407 | 900 | typename Class::template T<InputType, ResultType>>( | 408 | 900 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 900 | } | 410 | 900 | }; | 411 | 900 | AggregateFunctionPtr result = nullptr; | 412 | 900 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 900 | ( | 415 | 900 | [&] { | 416 | 900 | if (type == AllowedTypes) { | 417 | 900 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 900 | auto call = [&](const auto& type) -> bool { | 419 | 900 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 900 | result = | 421 | 900 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 900 | return true; | 423 | 900 | }; | 424 | 900 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 900 | throw doris::Exception( | 426 | 900 | ErrorCode::INTERNAL_ERROR, | 427 | 900 | "agg function {} error, arg type {}, result type {}", name, | 428 | 900 | argument_types[define_index]->get_name(), | 429 | 900 | result_type->get_name()); | 430 | 900 | } | 431 | 900 | } | 432 | 900 | }(), | 433 | 900 | ...); | 434 | | | 435 | 900 | return result; | 436 | 900 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 64 | TArgs&&... args) { | 397 | 64 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 64 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 64 | ResultType < InputType) { | 400 | 64 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 64 | "agg function {} error, arg type {}, result type {}", name, | 402 | 64 | argument_types[define_index]->get_name(), | 403 | 64 | result_type->get_name()); | 404 | 64 | return nullptr; | 405 | 64 | } else { | 406 | 64 | return creator_without_type::create< | 407 | 64 | typename Class::template T<InputType, ResultType>>( | 408 | 64 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 64 | } | 410 | 64 | }; | 411 | 64 | AggregateFunctionPtr result = nullptr; | 412 | 64 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 64 | ( | 415 | 64 | [&] { | 416 | 64 | if (type == AllowedTypes) { | 417 | 64 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 64 | auto call = [&](const auto& type) -> bool { | 419 | 64 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 64 | result = | 421 | 64 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 64 | return true; | 423 | 64 | }; | 424 | 64 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 64 | throw doris::Exception( | 426 | 64 | ErrorCode::INTERNAL_ERROR, | 427 | 64 | "agg function {} error, arg type {}, result type {}", name, | 428 | 64 | argument_types[define_index]->get_name(), | 429 | 64 | result_type->get_name()); | 430 | 64 | } | 431 | 64 | } | 432 | 64 | }(), | 433 | 64 | ...); | 434 | | | 435 | 64 | return result; | 436 | 64 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 63 | TArgs&&... args) { | 397 | 63 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 63 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 63 | ResultType < InputType) { | 400 | 63 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 63 | "agg function {} error, arg type {}, result type {}", name, | 402 | 63 | argument_types[define_index]->get_name(), | 403 | 63 | result_type->get_name()); | 404 | 63 | return nullptr; | 405 | 63 | } else { | 406 | 63 | return creator_without_type::create< | 407 | 63 | typename Class::template T<InputType, ResultType>>( | 408 | 63 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 63 | } | 410 | 63 | }; | 411 | 63 | AggregateFunctionPtr result = nullptr; | 412 | 63 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 63 | ( | 415 | 63 | [&] { | 416 | 63 | if (type == AllowedTypes) { | 417 | 63 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 63 | auto call = [&](const auto& type) -> bool { | 419 | 63 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 63 | result = | 421 | 63 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 63 | return true; | 423 | 63 | }; | 424 | 63 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 63 | throw doris::Exception( | 426 | 63 | ErrorCode::INTERNAL_ERROR, | 427 | 63 | "agg function {} error, arg type {}, result type {}", name, | 428 | 63 | argument_types[define_index]->get_name(), | 429 | 63 | result_type->get_name()); | 430 | 63 | } | 431 | 63 | } | 432 | 63 | }(), | 433 | 63 | ...); | 434 | | | 435 | 63 | return result; | 436 | 63 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE28create_base_with_result_typeINS_25CurryDirectWithResultTypeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISC_IKNS_9IDataTypeEESaISQ_EERKSQ_bRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 396 | 70 | TArgs&&... args) { | 397 | 70 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 398 | 70 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 399 | 70 | ResultType < InputType) { | 400 | 70 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 401 | 70 | "agg function {} error, arg type {}, result type {}", name, | 402 | 70 | argument_types[define_index]->get_name(), | 403 | 70 | result_type->get_name()); | 404 | 70 | return nullptr; | 405 | 70 | } else { | 406 | 70 | return creator_without_type::create< | 407 | 70 | typename Class::template T<InputType, ResultType>>( | 408 | 70 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 409 | 70 | } | 410 | 70 | }; | 411 | 70 | AggregateFunctionPtr result = nullptr; | 412 | 70 | auto type = argument_types[define_index]->get_primitive_type(); | 413 | | | 414 | 70 | ( | 415 | 70 | [&] { | 416 | 70 | if (type == AllowedTypes) { | 417 | 70 | static_assert(is_decimalv3(AllowedTypes)); | 418 | 70 | auto call = [&](const auto& type) -> bool { | 419 | 70 | using DispatchType = std::decay_t<decltype(type)>; | 420 | 70 | result = | 421 | 70 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 422 | 70 | return true; | 423 | 70 | }; | 424 | 70 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 425 | 70 | throw doris::Exception( | 426 | 70 | ErrorCode::INTERNAL_ERROR, | 427 | 70 | "agg function {} error, arg type {}, result type {}", name, | 428 | 70 | argument_types[define_index]->get_name(), | 429 | 70 | result_type->get_name()); | 430 | 70 | } | 431 | 70 | } | 432 | 70 | }(), | 433 | 70 | ...); | 434 | | | 435 | 70 | return result; | 436 | 70 | } |
|
437 | | |
438 | | template <template <PrimitiveType> class AggregateFunctionTemplate> |
439 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
440 | | const DataTypePtr& result_type, |
441 | | const bool result_is_nullable, |
442 | 32.9k | const AggregateFunctionAttr& attr) { |
443 | 32.9k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, |
444 | 32.9k | result_is_nullable, attr); |
445 | 32.9k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20EEE7creatorINS_26AggregateFunctionSumSimpleEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 15.1k | const AggregateFunctionAttr& attr) { | 443 | 15.1k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 15.1k | result_is_nullable, attr); | 445 | 15.1k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE7creatorINS_16AggregateFuncAvgEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 1.96k | const AggregateFunctionAttr& attr) { | 443 | 1.96k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 1.96k | result_is_nullable, attr); | 445 | 1.96k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_20EEE7creatorINS_32AggregateFunctionSumSimpleReaderEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 13.5k | const AggregateFunctionAttr& attr) { | 443 | 13.5k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 13.5k | result_is_nullable, attr); | 445 | 13.5k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_27AggregateFunctionPercentileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 1.62k | const AggregateFunctionAttr& attr) { | 443 | 1.62k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 1.62k | result_is_nullable, attr); | 445 | 1.62k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_32AggregateFunctionPercentileArrayEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 413 | const AggregateFunctionAttr& attr) { | 443 | 413 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 413 | result_is_nullable, attr); | 445 | 413 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_29AggregateFunctionPercentileV2EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 107 | const AggregateFunctionAttr& attr) { | 443 | 107 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 107 | result_is_nullable, attr); | 445 | 107 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE7creatorINS_34AggregateFunctionPercentileArrayV2EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 442 | 87 | const AggregateFunctionAttr& attr) { | 443 | 87 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 444 | 87 | result_is_nullable, attr); | 445 | 87 | } |
|
446 | | |
447 | | // Create agg function with result type from FE. |
448 | | // Currently only used for decimalv3 sum and avg. |
449 | | template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate> |
450 | | static AggregateFunctionPtr creator_with_result_type(const std::string& name, |
451 | | const DataTypes& argument_types, |
452 | | const DataTypePtr& result_type, |
453 | | const bool result_is_nullable, |
454 | 3.50k | const AggregateFunctionAttr& attr) { |
455 | 3.50k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( |
456 | 3.50k | name, argument_types, result_type, result_is_nullable, attr); |
457 | 3.50k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_29AggregateFunctionSumDecimalV3EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 2.40k | const AggregateFunctionAttr& attr) { | 455 | 2.40k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 2.40k | name, argument_types, result_type, result_is_nullable, attr); | 457 | 2.40k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_25AggregateFuncAvgDecimalV3EEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 900 | const AggregateFunctionAttr& attr) { | 455 | 900 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 900 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 900 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE2EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 64 | const AggregateFunctionAttr& attr) { | 455 | 64 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 64 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 64 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE3EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 63 | const AggregateFunctionAttr& attr) { | 455 | 63 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 63 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 63 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE28ELS1_29ELS1_30ELS1_35EEE24creator_with_result_typeINS_43ArrayAggregateFunctionCreatorWithResultTypeINS_37AggregateFunctionTraitsWithResultTypeILNS_18AggregateOperationE4EEEE8FunctionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorISA_IKNS_9IDataTypeEESaISO_EERKSO_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 454 | 70 | const AggregateFunctionAttr& attr) { | 455 | 70 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 456 | 70 | name, argument_types, result_type, result_is_nullable, attr); | 457 | 70 | } |
|
458 | | |
459 | | template <template <PrimitiveType> class AggregateFunctionTemplate, typename... TArgs> |
460 | 29.6k | static AggregateFunctionPtr create(TArgs&&... args) { |
461 | 29.6k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); |
462 | 29.6k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_32AggregateFunctionDistinctNumericEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrERKS6_INS_18IAggregateFunctionEEEEESK_DpOT0_ Line | Count | Source | 460 | 2.20k | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 2.20k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 2.20k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_20ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_36ELS1_37ELS1_42EEE6createINS_36AggregateFunctionApproxCountDistinctEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrEEEES6_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 26.6k | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 26.6k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 26.6k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE2ENS_23AggregateFunctionTraitsILS5_2EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 306 | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 306 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 306 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE3ENS_23AggregateFunctionTraitsILS5_3EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 321 | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 321 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 321 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE6createINS_29ArrayAggregateFunctionCreatorILNS_18AggregateOperationE4ENS_23AggregateFunctionTraitsILS5_4EEEE8FunctionEJSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEEEESB_INS_18IAggregateFunctionEEDpOT0_ Line | Count | Source | 460 | 221 | static AggregateFunctionPtr create(TArgs&&... args) { | 461 | 221 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 462 | 221 | } |
|
463 | | |
464 | | template <template <typename> class AggregateFunctionTemplate, |
465 | | template <PrimitiveType> class Data> |
466 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
467 | | const DataTypePtr& result_type, |
468 | | const bool result_is_nullable, |
469 | | const AggregateFunctionAttr& attr) { |
470 | | return create_base<CurryData<AggregateFunctionTemplate, Data>>(argument_types, |
471 | | result_is_nullable, attr); |
472 | | } |
473 | | |
474 | | template <template <typename> class AggregateFunctionTemplate, |
475 | | template <PrimitiveType> class Data, typename... TArgs> |
476 | 3.57k | static AggregateFunctionPtr create(TArgs&&... args) { |
477 | 3.57k | return create_base<CurryData<AggregateFunctionTemplate, Data>>( |
478 | 3.57k | std::forward<TArgs>(args)...); |
479 | 3.57k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_20ImplArrayWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 12 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 12 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 12 | std::forward<TArgs>(args)...); | 479 | 12 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_9ImplArrayEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 433 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 433 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 433 | std::forward<TArgs>(args)...); | 479 | 433 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 2 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 2 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 2 | std::forward<TArgs>(args)...); | 479 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_10ImplWeightEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 430 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 430 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 430 | std::forward<TArgs>(args)...); | 479 | 430 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createITtTyENS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 3 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 3 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 3 | std::forward<TArgs>(args)...); | 479 | 3 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createITtTyENS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 11 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 11 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 11 | std::forward<TArgs>(args)...); | 479 | 11 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createITtTyENS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 435 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 435 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 435 | std::forward<TArgs>(args)...); | 479 | 435 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE6createINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 168 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 168 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 168 | std::forward<TArgs>(args)...); | 479 | 168 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42EEE6createINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 708 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 708 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 708 | std::forward<TArgs>(args)...); | 479 | 708 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_14CorrMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 457 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 457 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 457 | std::forward<TArgs>(args)...); | 479 | 457 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 26 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 26 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 26 | std::forward<TArgs>(args)...); | 479 | 26 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_8SampDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 446 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 446 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 446 | std::forward<TArgs>(args)...); | 479 | 446 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_7PopDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 476 | 443 | static AggregateFunctionPtr create(TArgs&&... args) { | 477 | 443 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 478 | 443 | std::forward<TArgs>(args)...); | 479 | 443 | } |
|
480 | | |
481 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
482 | | template <PrimitiveType> class Impl> |
483 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
484 | | const DataTypePtr& result_type, |
485 | | const bool result_is_nullable, |
486 | | const AggregateFunctionAttr& attr) { |
487 | | return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>( |
488 | | argument_types, result_is_nullable, attr); |
489 | | } |
490 | | |
491 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
492 | | template <PrimitiveType> class Impl, typename... TArgs> |
493 | | static AggregateFunctionPtr create(TArgs&&... args) { |
494 | | return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>( |
495 | | std::forward<TArgs>(args)...); |
496 | | } |
497 | | |
498 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
499 | | template <PrimitiveType> class Data> |
500 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
501 | | const DataTypePtr& result_type, |
502 | | const bool result_is_nullable, |
503 | 1.69k | const AggregateFunctionAttr& attr) { |
504 | 1.69k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
505 | 1.69k | argument_types, result_is_nullable, attr); |
506 | 1.69k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 563 | const AggregateFunctionAttr& attr) { | 504 | 563 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 563 | argument_types, result_is_nullable, attr); | 506 | 563 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 560 | const AggregateFunctionAttr& attr) { | 504 | 560 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 560 | argument_types, result_is_nullable, attr); | 506 | 560 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 560 | const AggregateFunctionAttr& attr) { | 504 | 560 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 560 | argument_types, result_is_nullable, attr); | 506 | 560 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 7 | const AggregateFunctionAttr& attr) { | 504 | 7 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 7 | argument_types, result_is_nullable, attr); | 506 | 7 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 503 | 8 | const AggregateFunctionAttr& attr) { | 504 | 8 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 505 | 8 | argument_types, result_is_nullable, attr); | 506 | 8 | } |
|
507 | | |
508 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
509 | | template <PrimitiveType> class Data, typename... TArgs> |
510 | 2.01k | static AggregateFunctionPtr create(TArgs&&... args) { |
511 | 2.01k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
512 | 2.01k | std::forward<TArgs>(args)...); |
513 | 2.01k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_17ELS1_8ELS1_9ELS1_25ELS1_26ELS1_42ELS1_41EEE6createINS_21AggregateFunctionUniqENS_30AggregateFunctionUniqExactDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 1.42k | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 1.42k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 1.42k | std::forward<TArgs>(args)...); | 513 | 1.42k | } |
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10EEE6createINS_34AggregateFunctionUniqDistributeKeyENS_38AggregateFunctionUniqDistributeKeyDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE6createINS_23HistogramWithInputParamENS_36AggregateFunctionLinearHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 13 | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 13 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 13 | std::forward<TArgs>(args)...); | 513 | 13 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35EEE6createINS_15HistogramNormalENS_36AggregateFunctionLinearHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 510 | 578 | static AggregateFunctionPtr create(TArgs&&... args) { | 511 | 578 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 512 | 578 | std::forward<TArgs>(args)...); | 513 | 578 | } |
|
514 | | }; |
515 | | |
516 | | template <PrimitiveType... AllowedTypes> |
517 | | using creator_with_type_list = creator_with_type_list_base<0, AllowedTypes...>; |
518 | | |
519 | | } // namespace doris |