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 | 198k | do { \ |
42 | 198k | constexpr bool _is_new_serialized_type = \ |
43 | 198k | !std::is_same_v<decltype(&FunctionTemplate::get_serialized_type), \ |
44 | 198k | decltype(&IAggregateFunction::get_serialized_type)>; \ |
45 | 198k | if constexpr (_is_new_serialized_type) { \ |
46 | 127k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::serialize_to_column), \ |
47 | 127k | decltype(&IAggregateFunctionHelper< \ |
48 | 127k | FunctionTemplate>::serialize_to_column)>, \ |
49 | 127k | "need to override serialize_to_column"); \ |
50 | 127k | static_assert( \ |
51 | 127k | !std::is_same_v< \ |
52 | 127k | decltype(&FunctionTemplate::streaming_agg_serialize_to_column), \ |
53 | 127k | decltype(&IAggregateFunction::streaming_agg_serialize_to_column)>, \ |
54 | 127k | "need to override " \ |
55 | 127k | "streaming_agg_serialize_to_column"); \ |
56 | 127k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::deserialize_and_merge_vec), \ |
57 | 127k | decltype(&IAggregateFunctionHelper< \ |
58 | 127k | FunctionTemplate>::deserialize_and_merge_vec)>, \ |
59 | 127k | "need to override deserialize_and_merge_vec"); \ |
60 | 127k | static_assert( \ |
61 | 127k | !std::is_same_v< \ |
62 | 127k | decltype(&FunctionTemplate::deserialize_and_merge_vec_selected), \ |
63 | 127k | decltype(&IAggregateFunctionHelper< \ |
64 | 127k | FunctionTemplate>::deserialize_and_merge_vec_selected)>, \ |
65 | 127k | "need to override " \ |
66 | 127k | "deserialize_and_merge_vec_selected"); \ |
67 | 127k | static_assert( \ |
68 | 127k | !std::is_same_v<decltype(&FunctionTemplate::serialize_without_key_to_column), \ |
69 | 127k | decltype(&IAggregateFunctionHelper< \ |
70 | 127k | FunctionTemplate>::serialize_without_key_to_column)>, \ |
71 | 127k | "need to override serialize_without_key_to_column"); \ |
72 | 127k | static_assert( \ |
73 | 127k | !std::is_same_v< \ |
74 | 127k | decltype(&FunctionTemplate::deserialize_and_merge_from_column_range), \ |
75 | 127k | decltype(&IAggregateFunctionHelper< \ |
76 | 127k | FunctionTemplate>::deserialize_and_merge_from_column)>, \ |
77 | 127k | "need to override " \ |
78 | 127k | "deserialize_and_merge_from_column"); \ |
79 | 127k | } \ |
80 | 198k | } while (false) |
81 | | |
82 | | namespace doris { |
83 | | #include "common/compile_check_begin.h" |
84 | | |
85 | | struct creator_without_type { |
86 | | template <bool multi_arguments, bool f, typename T> |
87 | | using NullableT = std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>, |
88 | | AggregateFunctionNullUnaryInline<T, f>>; |
89 | | |
90 | | template <bool multi_arguments, bool f, typename T> |
91 | | using NullableV2T = |
92 | | std::conditional_t<multi_arguments, AggregateFunctionNullVariadicInline<T, f>, |
93 | | AggregateFunctionNullUnaryInlineV2<T, f>>; |
94 | | |
95 | | template <typename AggregateFunctionTemplate> |
96 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
97 | | const DataTypePtr& result_type, |
98 | | const bool result_is_nullable, |
99 | 7.16k | const AggregateFunctionAttr& attr) { |
100 | 7.16k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
101 | 7.16k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); |
102 | 7.16k | } _ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 2.47k | const AggregateFunctionAttr& attr) { | 100 | 2.47k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 2.47k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 2.47k | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 1.19k | const AggregateFunctionAttr& attr) { | 100 | 1.19k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 1.19k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 1.19k | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 447 | const AggregateFunctionAttr& attr) { | 100 | 447 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 447 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 447 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 1.37k | const AggregateFunctionAttr& attr) { | 100 | 1.37k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 1.37k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 1.37k | } |
_ZN5doris20creator_without_type7creatorINS_19WindowFunctionNTileEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 15 | const AggregateFunctionAttr& attr) { | 100 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 15 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 15 | } |
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionRetentionEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS3_IKNS_9IDataTypeEESaISH_EERKSH_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 444 | const AggregateFunctionAttr& attr) { | 100 | 444 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 444 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 444 | } |
_ZN5doris20creator_without_type7creatorINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 571 | const AggregateFunctionAttr& attr) { | 100 | 571 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 571 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 571 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 604 | const AggregateFunctionAttr& attr) { | 100 | 604 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 604 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 604 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 7 | const AggregateFunctionAttr& attr) { | 100 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 7 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 7 | } |
_ZN5doris20creator_without_type7creatorINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 24 | const AggregateFunctionAttr& attr) { | 100 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 24 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 24 | } |
|
103 | | |
104 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
105 | | static AggregateFunctionPtr create(const DataTypes& argument_types_, |
106 | | const bool result_is_nullable, |
107 | 102k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. |
109 | 102k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { |
110 | 80.3k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
111 | 47.8k | return create_unary_arguments<AggregateFunctionTemplate>( |
112 | 47.8k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
113 | 47.8k | } else { |
114 | 32.5k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( |
115 | 32.5k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
116 | 32.5k | } |
117 | 80.3k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { |
118 | 7.82k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
119 | 6.74k | return create_multi_arguments<AggregateFunctionTemplate>( |
120 | 6.74k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
121 | 6.74k | } else { |
122 | 1.08k | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( |
123 | 1.08k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
124 | 1.08k | } |
125 | 14.2k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { |
126 | 14.2k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
127 | 8.26k | return create_varargs<AggregateFunctionTemplate>( |
128 | 8.26k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
129 | 8.26k | } else { |
130 | 5.97k | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( |
131 | 5.97k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
132 | 5.97k | } |
133 | | } else { |
134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, |
135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " |
136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " |
137 | | "NonNullableAggregateFunction)"); |
138 | | } |
139 | 0 | return nullptr; |
140 | 102k | } _ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 894 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 894 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 894 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 894 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 894 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 130 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 130 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 130 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 130 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 130 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 130 | } |
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 | 107 | 30 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 30 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 30 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 30 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 30 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 30 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.35k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.35k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.35k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.35k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.35k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.35k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 18 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 18 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 18 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2.21k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2.21k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2.21k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2.21k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2.21k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2.21k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 9 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 9 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 9 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 9 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 157 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 157 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 157 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 157 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 157 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 157 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 3.83k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 3.83k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 3.83k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 3.83k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 3.83k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 3.83k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 86 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 86 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 86 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 86 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 86 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 86 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 9.05k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 9.05k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 9.05k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 9.05k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 9.05k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 9.05k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 6.54k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 6.54k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 6.54k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 6.54k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 6.54k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 6.54k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.21k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.21k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.21k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.21k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.21k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.21k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 70 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 70 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 70 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 70 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 70 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 70 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2.31k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2.31k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2.31k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2.31k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2.31k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2.31k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 97 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 97 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 97 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 97 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 97 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 97 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 8 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 627 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 627 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 627 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 627 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 627 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 627 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 9 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 9 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 9 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 9 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 93 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 93 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 93 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 93 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 93 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 93 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 24 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 98 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 98 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 98 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 98 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 98 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 98 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 102 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 102 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 102 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 102 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 102 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 102 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 34 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 34 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 34 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 34 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 34 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 34 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.18k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.18k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.18k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.18k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.18k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.18k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 408 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 408 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 408 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 408 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 408 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 408 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 286 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 286 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 286 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 286 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 286 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 286 | } |
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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 2 | } else { | 130 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 2 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 16 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 16 | } else { | 130 | 16 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 16 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 16 | } |
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 | 107 | 712 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 712 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 712 | } else { | 130 | 712 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 712 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 712 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 712 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 64 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 64 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 64 | } else { | 130 | 64 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 64 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 64 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 64 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 2 | } else { | 130 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 2 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 1 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 1 | } else { | 130 | 1 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 1 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 13 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 13 | } else { | 130 | 13 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 13 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 13 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 549 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 549 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 549 | } else { | 130 | 549 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 549 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 549 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 549 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 4 | } else { | 130 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 4 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 10 | } else { | 130 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 10 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 10 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 2 | } else { | 130 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 2 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 16 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 16 | } else { | 130 | 16 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 16 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 36 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 36 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 36 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 36 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 36 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 36 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 33 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 33 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 33 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 458 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 458 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 458 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 458 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 458 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 458 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 35 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 35 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 35 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 35 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 35 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 35 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 35 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 35 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 35 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 35 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 35 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 35 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 33 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 33 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 33 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 33 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 33 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 33 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 461 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 461 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 461 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 461 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 461 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 461 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 35 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 35 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 35 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 35 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 35 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 35 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 35 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 35 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 35 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 35 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 35 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 35 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 33 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 33 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 33 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 33 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 33 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 33 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 458 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 458 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 458 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 458 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 458 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 458 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 35 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 35 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 35 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 35 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 35 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 35 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 35 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 35 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 35 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 35 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 35 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 35 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2.47k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2.47k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2.47k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2.47k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2.47k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2.47k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.19k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.19k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.19k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.19k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.19k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.19k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 445 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 445 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 445 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 445 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 445 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 445 | } |
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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 444 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 444 | } else { | 114 | 444 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 444 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 444 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 444 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 4 | } else { | 114 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 6 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 6 | } else { | 114 | 6 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 6 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 6 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 6 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 6 | } else { | 114 | 6 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 6 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 6 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 18 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 18 | } else { | 114 | 18 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 18 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
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_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 | 107 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 15 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 15 | } else { | 114 | 15 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 15 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 23 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 23 | } else { | 114 | 23 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 23 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 23 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 4 | } else { | 114 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 4 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 4 | } else { | 114 | 4 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 16 | } else { | 114 | 16 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 16 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 16 | } |
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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
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_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 | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 12 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 12 | } else { | 114 | 12 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 12 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_35AggregateFunctionGroupConcatImplStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2.70k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2.70k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2.70k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2.70k | return create_varargs<AggregateFunctionTemplate>( | 128 | 2.70k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2.70k | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.81k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 1.81k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 1.81k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 1.81k | return create_varargs<AggregateFunctionTemplate>( | 128 | 1.81k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.81k | } |
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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2 | return create_varargs<AggregateFunctionTemplate>( | 128 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 913 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 913 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 913 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 913 | return create_varargs<AggregateFunctionTemplate>( | 128 | 913 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 913 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 347 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 347 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 347 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 347 | return create_varargs<AggregateFunctionTemplate>( | 128 | 347 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 347 | } |
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 | 107 | 886 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 886 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 886 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 886 | return create_varargs<AggregateFunctionTemplate>( | 128 | 886 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 886 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 27 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 27 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 27 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 27 | return create_varargs<AggregateFunctionTemplate>( | 128 | 27 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 27 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 921 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 921 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 921 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 921 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 921 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 921 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 981 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 981 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 981 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 981 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 981 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 981 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.20k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.20k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.20k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.20k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.20k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.20k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.45k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.45k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.45k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.45k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.45k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.45k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.37k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.37k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.37k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.37k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.37k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.37k | } |
_ZN5doris20creator_without_type6createINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 15 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 15 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 15 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 15 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 50 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 50 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 50 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 50 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 50 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 50 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 46 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 46 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 46 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 46 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 46 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 46 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 38 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 38 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 38 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 38 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 42 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 42 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 42 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 42 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 42 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 22 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 22 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 22 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 22 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 22 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 47 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 47 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 47 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 47 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 47 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 47 | } |
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 | 107 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 24 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 16 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 16 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 16 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 16 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 16 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 16 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 40 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 40 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 40 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 40 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 40 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 40 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 125 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 125 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 125 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 125 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 125 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 125 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.07k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.07k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.07k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.07k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.07k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.07k | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.14k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.14k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.14k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.14k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.14k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.14k | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.09k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.09k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.09k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.09k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.09k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.09k | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 618 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 618 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 618 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 618 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 618 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 618 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 466 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 466 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 466 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 466 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 466 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 466 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 41 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 41 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 41 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 41 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 41 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 4 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 4 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 3 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 3 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 3 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 1 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 425 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 425 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 425 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 425 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 425 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 425 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 1 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 1 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 425 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 425 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 425 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 425 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 425 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 106 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 106 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 106 | } else { | 114 | 106 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 106 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 106 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 106 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 309 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 309 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 309 | } else { | 114 | 309 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 309 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 309 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 309 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 324 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 324 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 324 | } else { | 114 | 324 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 324 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 324 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 324 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12.7k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 12.7k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 12.7k | } else { | 114 | 12.7k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 12.7k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 12.7k | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12.7k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4.02k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 4.02k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 4.02k | } else { | 114 | 4.02k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4.02k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4.02k | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4.02k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 234 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 234 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 234 | } else { | 114 | 234 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 234 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 234 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 234 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 132 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 132 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 132 | } else { | 114 | 132 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 132 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 132 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 132 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 164 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 164 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 164 | } else { | 114 | 164 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 164 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 164 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 164 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 2 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 2 | } else { | 114 | 2 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 2 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 40 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 40 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 40 | } else { | 114 | 40 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 40 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 40 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 40 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.96k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 1.96k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 1.96k | } else { | 114 | 1.96k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 1.96k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 1.96k | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.96k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 708 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 708 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 708 | } else { | 114 | 708 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 708 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 708 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 708 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 26 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 26 | } else { | 114 | 26 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 26 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 26 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 5.82k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 5.82k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 5.82k | } else { | 114 | 5.82k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 5.82k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 5.82k | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 5.82k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4.68k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 4.68k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 4.68k | } else { | 114 | 4.68k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4.68k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4.68k | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4.68k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 628 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 628 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 628 | } else { | 114 | 628 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 628 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 628 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 628 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 12 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 12 | } else { | 114 | 12 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 12 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 12 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | 12 | } else { | 114 | 12 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 12 | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
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 | 107 | 744 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 744 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 744 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 744 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 744 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 744 | } |
_ZN5doris20creator_without_type6createINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 46 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 46 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 46 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 46 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 46 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 46 | } |
_ZN5doris20creator_without_type6createINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 23 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 23 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 23 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 23 | } |
_ZN5doris20creator_without_type6createINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 22 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 22 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 22 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 22 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 22 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 22 | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 8 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 8 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 20 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 20 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 20 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 31 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 31 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 31 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 31 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 31 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 31 | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.96k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1.96k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 1.96k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 1.96k | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 1.96k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1.96k | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 2 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 11 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 11 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 11 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 11 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 4 | } else { | 122 | 4 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 4 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 6 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 6 | } else { | 122 | 6 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 6 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 6 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 455 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 455 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 455 | } else { | 122 | 455 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 455 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 455 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 455 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 12 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 12 | } else { | 122 | 12 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 12 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 4 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 4 | } else { | 122 | 4 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 4 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 2 | } else { | 122 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 2 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 13 | } else { | 122 | 13 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 13 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 13 | } |
_ZN5doris20creator_without_type6createINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 522 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 522 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 522 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 522 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 522 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 522 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 444 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 444 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 444 | return create_varargs<AggregateFunctionTemplate>( | 128 | 444 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 444 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 3 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 3 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 3 | return create_varargs<AggregateFunctionTemplate>( | 128 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 11 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 11 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 11 | return create_varargs<AggregateFunctionTemplate>( | 128 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 11 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 20 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 20 | return create_varargs<AggregateFunctionTemplate>( | 128 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2 | return create_varargs<AggregateFunctionTemplate>( | 128 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2 | return create_varargs<AggregateFunctionTemplate>( | 128 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 10 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 10 | return create_varargs<AggregateFunctionTemplate>( | 128 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 10 | } |
_ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 428 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 428 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 428 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 428 | return create_varargs<AggregateFunctionTemplate>( | 128 | 428 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 428 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2 | return create_varargs<AggregateFunctionTemplate>( | 128 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2 | return create_varargs<AggregateFunctionTemplate>( | 128 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 11 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 11 | } else { | 130 | 11 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 11 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 11 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 11 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 14 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 14 | } else { | 130 | 14 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 14 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 14 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 14 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 9 | } else { | 130 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 9 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 13 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 13 | } else { | 130 | 13 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 13 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 13 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 442 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 442 | } else { | 130 | 442 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 442 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 442 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 442 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 906 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 906 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 906 | } else { | 130 | 906 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 906 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 906 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 906 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 10 | } else { | 130 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 10 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 10 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 15 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 15 | } else { | 130 | 15 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 15 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 15 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 15 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 10 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 10 | } else { | 130 | 10 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 10 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 10 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 10 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 2 | } else { | 130 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 2 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 4 | } else { | 130 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 4 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 2 | } else { | 130 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 2 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 2 | } else { | 130 | 2 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 2 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 6 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 6 | } else { | 130 | 6 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 6 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 6 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 25 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 25 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 25 | } else { | 130 | 25 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 25 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 25 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 25 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 17 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 17 | } else { | 130 | 17 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 17 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 17 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 17 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 23 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 23 | } else { | 130 | 23 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 23 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 23 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 183 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 183 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 183 | } else { | 130 | 183 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 183 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 183 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 183 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 61 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 61 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 61 | } else { | 130 | 61 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 61 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 61 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 61 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 516 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 516 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 516 | } else { | 130 | 516 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 516 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 516 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 516 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 478 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 478 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 478 | } else { | 130 | 478 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 478 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 478 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 478 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 9 | } else { | 130 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 9 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 9 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 9 | } else { | 130 | 9 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 9 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 9 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 9 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 18 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 33 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 33 | } else { | 130 | 33 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 33 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 33 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 33 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 32 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 32 | } else { | 130 | 32 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 32 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 32 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 32 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 95 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 95 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 95 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 95 | return create_varargs<AggregateFunctionTemplate>( | 128 | 95 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 95 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 441 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 441 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 441 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 441 | return create_varargs<AggregateFunctionTemplate>( | 128 | 441 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 441 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 91 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 91 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 91 | } else { | 130 | 91 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 91 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 91 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 91 | } |
_ZN5doris20creator_without_type6createINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 442 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 442 | } else { | 130 | 442 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 442 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 442 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 442 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 571 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 571 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 571 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 571 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 571 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 571 | } |
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 | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 5 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 5 | } else { | 130 | 5 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 5 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 5 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 5 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 12 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 12 | } else { | 130 | 12 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 12 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 8 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 8 | } else { | 130 | 8 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 8 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 18 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 18 | } else { | 130 | 18 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 18 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 18 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 43 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 43 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 43 | } else { | 130 | 43 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 43 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 43 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 43 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 19 | } else { | 130 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 19 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 19 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 19 | } else { | 130 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 19 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 19 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 4 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 4 | } else { | 130 | 4 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 4 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 4 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 4 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 20 | } else { | 130 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 20 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 20 | } else { | 130 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 20 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 446 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 446 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 446 | } else { | 130 | 446 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 446 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 446 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 446 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 21 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 21 | } else { | 130 | 21 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 21 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 20 | } else { | 130 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 20 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 20 | } else { | 130 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 20 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 20 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 20 | } else { | 130 | 20 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 20 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 20 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 20 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 19 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 19 | } else { | 130 | 19 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 19 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 19 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 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 | 107 | 39 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 39 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 39 | } else { | 130 | 39 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 39 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 39 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 39 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 38 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 38 | } else { | 130 | 38 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 38 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 38 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 38 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 38 | } else { | 130 | 38 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 38 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 38 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 38 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 3 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 3 | } else { | 122 | 3 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 3 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 3 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 3 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 1 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 1 | } else { | 122 | 1 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 1 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 1 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 1 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 21 | } else { | 122 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 21 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 21 | } else { | 122 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 21 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 444 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 444 | } else { | 122 | 444 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 444 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 444 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 444 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 21 | } else { | 122 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 21 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 21 | } else { | 122 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 21 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 2 | } else { | 122 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 2 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 21 | } else { | 122 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 21 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 21 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 21 | } else { | 122 | 21 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 21 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 21 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 21 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 2 | } else { | 122 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 2 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 2 | } else { | 122 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 2 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 2 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | 2 | } else { | 122 | 2 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 2 | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 604 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 604 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 604 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 604 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 604 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 604 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 456 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 456 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 456 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 456 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 456 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 456 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 26 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 26 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 26 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 26 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 26 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 446 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 446 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 446 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 446 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 446 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 446 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 437 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 437 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 437 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 437 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 437 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 437 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 13 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 13 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 13 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 13 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 13 | } |
_ZN5doris20creator_without_type6createINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | 12 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 12 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 12 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 12 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 12 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 7 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 7 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 7 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 7 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 7 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 8 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 8 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 8 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 8 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 8 | } |
_ZN5doris20creator_without_type6createINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 7 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 7 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 7 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 7 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 7 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 24 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 24 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 24 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 24 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 24 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 24 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 2 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2 | return create_varargs<AggregateFunctionTemplate>( | 128 | 2 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 2 | } |
_ZN5doris20creator_without_type6createINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 110 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 113 | | } else { | 114 | | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | | } | 117 | | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 121 | | } else { | 122 | | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | | } | 125 | 110 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 110 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 110 | return create_varargs<AggregateFunctionTemplate>( | 128 | 110 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | | } else { | 130 | | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 110 | } |
|
141 | | |
142 | | // dispatch |
143 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
144 | | static AggregateFunctionPtr create_varargs(const DataTypes& argument_types_, |
145 | | const bool result_is_nullable, |
146 | 8.26k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
147 | 8.26k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
148 | 8.26k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
149 | 8.26k | if (have_nullable(argument_types_)) { |
150 | 6.98k | std::visit( |
151 | 6.98k | [&](auto multi_arguments, auto result_is_nullable) { |
152 | 6.98k | if (attr.enable_aggregate_function_null_v2) { |
153 | 2.18k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, |
154 | 2.18k | AggregateFunctionTemplate>( |
155 | 2.18k | result.release(), argument_types_, attr.is_window_function)); |
156 | 4.79k | } else { |
157 | 4.79k | result.reset(new NullableT<multi_arguments, result_is_nullable, |
158 | 4.79k | AggregateFunctionTemplate>( |
159 | 4.79k | result.release(), argument_types_, attr.is_window_function)); |
160 | 4.79k | } |
161 | 6.98k | }, 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 | 151 | 1.74k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.74k | if (attr.enable_aggregate_function_null_v2) { | 153 | 59 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 59 | AggregateFunctionTemplate>( | 155 | 59 | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.68k | } else { | 157 | 1.68k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 1.68k | AggregateFunctionTemplate>( | 159 | 1.68k | result.release(), argument_types_, attr.is_window_function)); | 160 | 1.68k | } | 161 | 1.74k | }, |
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 | 151 | 1.76k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.76k | if (attr.enable_aggregate_function_null_v2) { | 153 | 1.76k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 1.76k | AggregateFunctionTemplate>( | 155 | 1.76k | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.76k | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 1.76k | }, |
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 | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 2 | }, |
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 | 151 | 424 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 424 | if (attr.enable_aggregate_function_null_v2) { | 153 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 13 | AggregateFunctionTemplate>( | 155 | 13 | result.release(), argument_types_, attr.is_window_function)); | 156 | 411 | } else { | 157 | 411 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 411 | AggregateFunctionTemplate>( | 159 | 411 | result.release(), argument_types_, attr.is_window_function)); | 160 | 411 | } | 161 | 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 | 151 | 438 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 438 | if (attr.enable_aggregate_function_null_v2) { | 153 | 28 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 28 | AggregateFunctionTemplate>( | 155 | 28 | result.release(), argument_types_, attr.is_window_function)); | 156 | 410 | } else { | 157 | 410 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 410 | AggregateFunctionTemplate>( | 159 | 410 | result.release(), argument_types_, attr.is_window_function)); | 160 | 410 | } | 161 | 438 | }, |
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 | 151 | 4 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 4 | if (attr.enable_aggregate_function_null_v2) { | 153 | 4 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 4 | AggregateFunctionTemplate>( | 155 | 4 | result.release(), argument_types_, attr.is_window_function)); | 156 | 4 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 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 | 151 | 331 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 331 | if (attr.enable_aggregate_function_null_v2) { | 153 | 5 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 5 | AggregateFunctionTemplate>( | 155 | 5 | result.release(), argument_types_, attr.is_window_function)); | 156 | 326 | } else { | 157 | 326 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 326 | AggregateFunctionTemplate>( | 159 | 326 | result.release(), argument_types_, attr.is_window_function)); | 160 | 326 | } | 161 | 331 | }, |
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 | 151 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 3 | if (attr.enable_aggregate_function_null_v2) { | 153 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 3 | AggregateFunctionTemplate>( | 155 | 3 | result.release(), argument_types_, attr.is_window_function)); | 156 | 3 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 3 | }, |
_ZZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_42AggregateFunctionDistinctSingleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Line | Count | Source | 151 | 800 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 800 | if (attr.enable_aggregate_function_null_v2) { | 153 | 63 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 63 | AggregateFunctionTemplate>( | 155 | 63 | result.release(), argument_types_, attr.is_window_function)); | 156 | 737 | } else { | 157 | 737 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 737 | AggregateFunctionTemplate>( | 159 | 737 | result.release(), argument_types_, attr.is_window_function)); | 160 | 737 | } | 161 | 800 | }, |
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 | 151 | 15 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 15 | if (attr.enable_aggregate_function_null_v2) { | 153 | 15 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 15 | AggregateFunctionTemplate>( | 155 | 15 | result.release(), argument_types_, attr.is_window_function)); | 156 | 15 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 15 | }, |
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 | 151 | 4 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 4 | if (attr.enable_aggregate_function_null_v2) { | 153 | 4 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 4 | AggregateFunctionTemplate>( | 155 | 4 | result.release(), argument_types_, attr.is_window_function)); | 156 | 4 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 4 | }, |
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 | 151 | 427 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 427 | if (attr.enable_aggregate_function_null_v2) { | 153 | 18 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 18 | AggregateFunctionTemplate>( | 155 | 18 | result.release(), argument_types_, attr.is_window_function)); | 156 | 409 | } else { | 157 | 409 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 409 | AggregateFunctionTemplate>( | 159 | 409 | result.release(), argument_types_, attr.is_window_function)); | 160 | 409 | } | 161 | 427 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 3 | if (attr.enable_aggregate_function_null_v2) { | 153 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 3 | AggregateFunctionTemplate>( | 155 | 3 | result.release(), argument_types_, attr.is_window_function)); | 156 | 3 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 3 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 11 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 11 | if (attr.enable_aggregate_function_null_v2) { | 153 | 11 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 11 | AggregateFunctionTemplate>( | 155 | 11 | result.release(), argument_types_, attr.is_window_function)); | 156 | 11 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Line | Count | Source | 151 | 4 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 4 | if (attr.enable_aggregate_function_null_v2) { | 153 | 4 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 4 | AggregateFunctionTemplate>( | 155 | 4 | result.release(), argument_types_, attr.is_window_function)); | 156 | 4 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 4 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 10 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 10 | if (attr.enable_aggregate_function_null_v2) { | 153 | 10 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 10 | AggregateFunctionTemplate>( | 155 | 10 | result.release(), argument_types_, attr.is_window_function)); | 156 | 10 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 10 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 421 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 421 | if (attr.enable_aggregate_function_null_v2) { | 153 | 9 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 9 | AggregateFunctionTemplate>( | 155 | 9 | result.release(), argument_types_, attr.is_window_function)); | 156 | 412 | } else { | 157 | 412 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 412 | AggregateFunctionTemplate>( | 159 | 412 | result.release(), argument_types_, attr.is_window_function)); | 160 | 412 | } | 161 | 421 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Line | Count | Source | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EEST_EEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb0EESS_IbLb1EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EESS_IbLb0EEEEDaSO_SP_ Unexecuted instantiation: _ZZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_T0_E_clISt17integral_constantIbLb1EEST_EEDaSO_SP_ 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 | 151 | 72 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 72 | if (attr.enable_aggregate_function_null_v2) { | 153 | 72 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 72 | AggregateFunctionTemplate>( | 155 | 72 | result.release(), argument_types_, attr.is_window_function)); | 156 | 72 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 72 | }, |
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 | 151 | 424 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 424 | if (attr.enable_aggregate_function_null_v2) { | 153 | 16 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 16 | AggregateFunctionTemplate>( | 155 | 16 | result.release(), argument_types_, attr.is_window_function)); | 156 | 408 | } else { | 157 | 408 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 408 | AggregateFunctionTemplate>( | 159 | 408 | result.release(), argument_types_, attr.is_window_function)); | 160 | 408 | } | 161 | 424 | }, |
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 | 151 | 55 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 55 | if (attr.enable_aggregate_function_null_v2) { | 153 | 55 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 55 | AggregateFunctionTemplate>( | 155 | 55 | result.release(), argument_types_, attr.is_window_function)); | 156 | 55 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 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 | 151 | 13 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 13 | if (attr.enable_aggregate_function_null_v2) { | 153 | 13 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 13 | AggregateFunctionTemplate>( | 155 | 13 | result.release(), argument_types_, attr.is_window_function)); | 156 | 13 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 13 | }, |
|
162 | 6.98k | make_bool_variant(argument_types_.size() > 1), |
163 | 6.98k | make_bool_variant(result_is_nullable)); |
164 | 6.98k | } |
165 | | |
166 | 8.26k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
167 | 8.26k | return AggregateFunctionPtr(result.release()); |
168 | 8.26k | } 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 | 146 | 2.70k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2.70k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2.70k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2.70k | if (have_nullable(argument_types_)) { | 150 | 1.74k | std::visit( | 151 | 1.74k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.74k | if (attr.enable_aggregate_function_null_v2) { | 153 | 1.74k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 1.74k | AggregateFunctionTemplate>( | 155 | 1.74k | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.74k | } else { | 157 | 1.74k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 1.74k | AggregateFunctionTemplate>( | 159 | 1.74k | result.release(), argument_types_, attr.is_window_function)); | 160 | 1.74k | } | 161 | 1.74k | }, | 162 | 1.74k | make_bool_variant(argument_types_.size() > 1), | 163 | 1.74k | make_bool_variant(result_is_nullable)); | 164 | 1.74k | } | 165 | | | 166 | 2.70k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2.70k | return AggregateFunctionPtr(result.release()); | 168 | 2.70k | } |
_ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 1.81k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 1.81k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 1.81k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 1.81k | if (have_nullable(argument_types_)) { | 150 | 1.76k | std::visit( | 151 | 1.76k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.76k | if (attr.enable_aggregate_function_null_v2) { | 153 | 1.76k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 1.76k | AggregateFunctionTemplate>( | 155 | 1.76k | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.76k | } else { | 157 | 1.76k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 1.76k | AggregateFunctionTemplate>( | 159 | 1.76k | result.release(), argument_types_, attr.is_window_function)); | 160 | 1.76k | } | 161 | 1.76k | }, | 162 | 1.76k | make_bool_variant(argument_types_.size() > 1), | 163 | 1.76k | make_bool_variant(result_is_nullable)); | 164 | 1.76k | } | 165 | | | 166 | 1.81k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 1.81k | return AggregateFunctionPtr(result.release()); | 168 | 1.81k | } |
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 | 146 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2 | if (have_nullable(argument_types_)) { | 150 | 2 | std::visit( | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 2 | AggregateFunctionTemplate>( | 159 | 2 | result.release(), argument_types_, attr.is_window_function)); | 160 | 2 | } | 161 | 2 | }, | 162 | 2 | make_bool_variant(argument_types_.size() > 1), | 163 | 2 | make_bool_variant(result_is_nullable)); | 164 | 2 | } | 165 | | | 166 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2 | return AggregateFunctionPtr(result.release()); | 168 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE5EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 910 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 910 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 910 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 910 | if (have_nullable(argument_types_)) { | 150 | 864 | std::visit( | 151 | 864 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 864 | if (attr.enable_aggregate_function_null_v2) { | 153 | 864 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 864 | AggregateFunctionTemplate>( | 155 | 864 | result.release(), argument_types_, attr.is_window_function)); | 156 | 864 | } else { | 157 | 864 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 864 | AggregateFunctionTemplate>( | 159 | 864 | result.release(), argument_types_, attr.is_window_function)); | 160 | 864 | } | 161 | 864 | }, | 162 | 864 | make_bool_variant(argument_types_.size() > 1), | 163 | 864 | make_bool_variant(result_is_nullable)); | 164 | 864 | } | 165 | | | 166 | 910 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 910 | return AggregateFunctionPtr(result.release()); | 168 | 910 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_7ReducerILNS_13PrimitiveTypeE6EE6OutputELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEESA_RKSt6vectorIS8_IKNS_9IDataTypeEESaISG_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 347 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 347 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 347 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 347 | if (have_nullable(argument_types_)) { | 150 | 335 | std::visit( | 151 | 335 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 335 | if (attr.enable_aggregate_function_null_v2) { | 153 | 335 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 335 | AggregateFunctionTemplate>( | 155 | 335 | result.release(), argument_types_, attr.is_window_function)); | 156 | 335 | } else { | 157 | 335 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 335 | AggregateFunctionTemplate>( | 159 | 335 | result.release(), argument_types_, attr.is_window_function)); | 160 | 335 | } | 161 | 335 | }, | 162 | 335 | make_bool_variant(argument_types_.size() > 1), | 163 | 335 | make_bool_variant(result_is_nullable)); | 164 | 335 | } | 165 | | | 166 | 347 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 347 | return AggregateFunctionPtr(result.release()); | 168 | 347 | } |
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 | 146 | 888 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 888 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 888 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 888 | if (have_nullable(argument_types_)) { | 150 | 803 | std::visit( | 151 | 803 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 803 | if (attr.enable_aggregate_function_null_v2) { | 153 | 803 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 803 | AggregateFunctionTemplate>( | 155 | 803 | result.release(), argument_types_, attr.is_window_function)); | 156 | 803 | } else { | 157 | 803 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 803 | AggregateFunctionTemplate>( | 159 | 803 | result.release(), argument_types_, attr.is_window_function)); | 160 | 803 | } | 161 | 803 | }, | 162 | 803 | make_bool_variant(argument_types_.size() > 1), | 163 | 803 | make_bool_variant(result_is_nullable)); | 164 | 803 | } | 165 | | | 166 | 888 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 888 | return AggregateFunctionPtr(result.release()); | 168 | 888 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggregateFunctionDistinctINS_44AggregateFunctionDistinctMultipleGenericDataELb0EEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES7_RKSt6vectorIS5_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 27 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 27 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 27 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 27 | if (have_nullable(argument_types_)) { | 150 | 15 | std::visit( | 151 | 15 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 15 | if (attr.enable_aggregate_function_null_v2) { | 153 | 15 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 15 | AggregateFunctionTemplate>( | 155 | 15 | result.release(), argument_types_, attr.is_window_function)); | 156 | 15 | } else { | 157 | 15 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 15 | AggregateFunctionTemplate>( | 159 | 15 | result.release(), argument_types_, attr.is_window_function)); | 160 | 15 | } | 161 | 15 | }, | 162 | 15 | make_bool_variant(argument_types_.size() > 1), | 163 | 15 | make_bool_variant(result_is_nullable)); | 164 | 15 | } | 165 | | | 166 | 27 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 27 | return AggregateFunctionPtr(result.release()); | 168 | 27 | } |
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionRetentionEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 443 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 443 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 443 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 443 | if (have_nullable(argument_types_)) { | 150 | 431 | std::visit( | 151 | 431 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 431 | if (attr.enable_aggregate_function_null_v2) { | 153 | 431 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 431 | AggregateFunctionTemplate>( | 155 | 431 | result.release(), argument_types_, attr.is_window_function)); | 156 | 431 | } else { | 157 | 431 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 431 | AggregateFunctionTemplate>( | 159 | 431 | result.release(), argument_types_, attr.is_window_function)); | 160 | 431 | } | 161 | 431 | }, | 162 | 431 | make_bool_variant(argument_types_.size() > 1), | 163 | 431 | make_bool_variant(result_is_nullable)); | 164 | 431 | } | 165 | | | 166 | 443 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 443 | return AggregateFunctionPtr(result.release()); | 168 | 443 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 3 | if (have_nullable(argument_types_)) { | 150 | 3 | std::visit( | 151 | 3 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 3 | if (attr.enable_aggregate_function_null_v2) { | 153 | 3 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 3 | AggregateFunctionTemplate>( | 155 | 3 | result.release(), argument_types_, attr.is_window_function)); | 156 | 3 | } else { | 157 | 3 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 3 | AggregateFunctionTemplate>( | 159 | 3 | result.release(), argument_types_, attr.is_window_function)); | 160 | 3 | } | 161 | 3 | }, | 162 | 3 | make_bool_variant(argument_types_.size() > 1), | 163 | 3 | make_bool_variant(result_is_nullable)); | 164 | 3 | } | 165 | | | 166 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 3 | return AggregateFunctionPtr(result.release()); | 168 | 3 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_22AggOrthBitMapIntersectILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 11 | if (have_nullable(argument_types_)) { | 150 | 11 | std::visit( | 151 | 11 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 11 | if (attr.enable_aggregate_function_null_v2) { | 153 | 11 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 11 | AggregateFunctionTemplate>( | 155 | 11 | result.release(), argument_types_, attr.is_window_function)); | 156 | 11 | } else { | 157 | 11 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 11 | AggregateFunctionTemplate>( | 159 | 11 | result.release(), argument_types_, attr.is_window_function)); | 160 | 11 | } | 161 | 11 | }, | 162 | 11 | make_bool_variant(argument_types_.size() > 1), | 163 | 11 | make_bool_variant(result_is_nullable)); | 164 | 11 | } | 165 | | | 166 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 11 | return AggregateFunctionPtr(result.release()); | 168 | 11 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_27AggOrthBitMapIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 20 | if (have_nullable(argument_types_)) { | 150 | 4 | std::visit( | 151 | 4 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 4 | if (attr.enable_aggregate_function_null_v2) { | 153 | 4 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 4 | AggregateFunctionTemplate>( | 155 | 4 | result.release(), argument_types_, attr.is_window_function)); | 156 | 4 | } else { | 157 | 4 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 4 | AggregateFunctionTemplate>( | 159 | 4 | result.release(), argument_types_, attr.is_window_function)); | 160 | 4 | } | 161 | 4 | }, | 162 | 4 | make_bool_variant(argument_types_.size() > 1), | 163 | 4 | make_bool_variant(result_is_nullable)); | 164 | 4 | } | 165 | | | 166 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 20 | return AggregateFunctionPtr(result.release()); | 168 | 20 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_24OrthBitmapUnionCountDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2 | if (have_nullable(argument_types_)) { | 150 | 2 | std::visit( | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 2 | AggregateFunctionTemplate>( | 159 | 2 | result.release(), argument_types_, attr.is_window_function)); | 160 | 2 | } | 161 | 2 | }, | 162 | 2 | make_bool_variant(argument_types_.size() > 1), | 163 | 2 | make_bool_variant(result_is_nullable)); | 164 | 2 | } | 165 | | | 166 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2 | return AggregateFunctionPtr(result.release()); | 168 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2 | if (have_nullable(argument_types_)) { | 150 | 2 | std::visit( | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 2 | AggregateFunctionTemplate>( | 159 | 2 | result.release(), argument_types_, attr.is_window_function)); | 160 | 2 | } | 161 | 2 | }, | 162 | 2 | make_bool_variant(argument_types_.size() > 1), | 163 | 2 | make_bool_variant(result_is_nullable)); | 164 | 2 | } | 165 | | | 166 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2 | return AggregateFunctionPtr(result.release()); | 168 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 10 | if (have_nullable(argument_types_)) { | 150 | 10 | std::visit( | 151 | 10 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 10 | if (attr.enable_aggregate_function_null_v2) { | 153 | 10 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 10 | AggregateFunctionTemplate>( | 155 | 10 | result.release(), argument_types_, attr.is_window_function)); | 156 | 10 | } else { | 157 | 10 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 10 | AggregateFunctionTemplate>( | 159 | 10 | result.release(), argument_types_, attr.is_window_function)); | 160 | 10 | } | 161 | 10 | }, | 162 | 10 | make_bool_variant(argument_types_.size() > 1), | 163 | 10 | make_bool_variant(result_is_nullable)); | 164 | 10 | } | 165 | | | 166 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 10 | return AggregateFunctionPtr(result.release()); | 168 | 10 | } |
_ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 428 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 428 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 428 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 428 | if (have_nullable(argument_types_)) { | 150 | 422 | std::visit( | 151 | 422 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 422 | if (attr.enable_aggregate_function_null_v2) { | 153 | 422 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 422 | AggregateFunctionTemplate>( | 155 | 422 | result.release(), argument_types_, attr.is_window_function)); | 156 | 422 | } else { | 157 | 422 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 422 | AggregateFunctionTemplate>( | 159 | 422 | result.release(), argument_types_, attr.is_window_function)); | 160 | 422 | } | 161 | 422 | }, | 162 | 422 | make_bool_variant(argument_types_.size() > 1), | 163 | 422 | make_bool_variant(result_is_nullable)); | 164 | 422 | } | 165 | | | 166 | 428 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 428 | return AggregateFunctionPtr(result.release()); | 168 | 428 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_17AggIntersectCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2 | if (have_nullable(argument_types_)) { | 150 | 2 | std::visit( | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 2 | AggregateFunctionTemplate>( | 159 | 2 | result.release(), argument_types_, attr.is_window_function)); | 160 | 2 | } | 161 | 2 | }, | 162 | 2 | make_bool_variant(argument_types_.size() > 1), | 163 | 2 | make_bool_variant(result_is_nullable)); | 164 | 2 | } | 165 | | | 166 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2 | return AggregateFunctionPtr(result.release()); | 168 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_20AggOrthBitMapExprCalILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2 | if (have_nullable(argument_types_)) { | 150 | 2 | std::visit( | 151 | 2 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 2 | if (attr.enable_aggregate_function_null_v2) { | 153 | 2 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 2 | AggregateFunctionTemplate>( | 155 | 2 | result.release(), argument_types_, attr.is_window_function)); | 156 | 2 | } else { | 157 | 2 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 2 | AggregateFunctionTemplate>( | 159 | 2 | result.release(), argument_types_, attr.is_window_function)); | 160 | 2 | } | 161 | 2 | }, | 162 | 2 | make_bool_variant(argument_types_.size() > 1), | 163 | 2 | make_bool_variant(result_is_nullable)); | 164 | 2 | } | 165 | | | 166 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2 | return AggregateFunctionPtr(result.release()); | 168 | 2 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type14create_varargsINS_25AggFunctionOrthBitmapFuncINS_25AggOrthBitMapExprCalCountILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 95 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 95 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 95 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 95 | if (have_nullable(argument_types_)) { | 150 | 72 | std::visit( | 151 | 72 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 72 | if (attr.enable_aggregate_function_null_v2) { | 153 | 72 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 72 | AggregateFunctionTemplate>( | 155 | 72 | result.release(), argument_types_, attr.is_window_function)); | 156 | 72 | } else { | 157 | 72 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 72 | AggregateFunctionTemplate>( | 159 | 72 | result.release(), argument_types_, attr.is_window_function)); | 160 | 72 | } | 161 | 72 | }, | 162 | 72 | make_bool_variant(argument_types_.size() > 1), | 163 | 72 | make_bool_variant(result_is_nullable)); | 164 | 72 | } | 165 | | | 166 | 95 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 95 | return AggregateFunctionPtr(result.release()); | 168 | 95 | } |
_ZN5doris20creator_without_type14create_varargsINS_30AggregateFunctionSequenceMatchILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 440 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 440 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 440 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 440 | if (have_nullable(argument_types_)) { | 150 | 424 | std::visit( | 151 | 424 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 424 | if (attr.enable_aggregate_function_null_v2) { | 153 | 424 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 424 | AggregateFunctionTemplate>( | 155 | 424 | result.release(), argument_types_, attr.is_window_function)); | 156 | 424 | } else { | 157 | 424 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 424 | AggregateFunctionTemplate>( | 159 | 424 | result.release(), argument_types_, attr.is_window_function)); | 160 | 424 | } | 161 | 424 | }, | 162 | 424 | make_bool_variant(argument_types_.size() > 1), | 163 | 424 | make_bool_variant(result_is_nullable)); | 164 | 424 | } | 165 | | | 166 | 440 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 440 | return AggregateFunctionPtr(result.release()); | 168 | 440 | } |
_ZN5doris20creator_without_type14create_varargsINS_24AggregateFunctionForEachEJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2 | if (have_nullable(argument_types_)) { | 150 | 0 | std::visit( | 151 | 0 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 0 | if (attr.enable_aggregate_function_null_v2) { | 153 | 0 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 0 | AggregateFunctionTemplate>( | 155 | 0 | result.release(), argument_types_, attr.is_window_function)); | 156 | 0 | } else { | 157 | 0 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 0 | AggregateFunctionTemplate>( | 159 | 0 | result.release(), argument_types_, attr.is_window_function)); | 160 | 0 | } | 161 | 0 | }, | 162 | 0 | make_bool_variant(argument_types_.size() > 1), | 163 | 0 | make_bool_variant(result_is_nullable)); | 164 | 0 | } | 165 | | | 166 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2 | return AggregateFunctionPtr(result.release()); | 168 | 2 | } |
_ZN5doris20creator_without_type14create_varargsINS_26AggregateFunctionForEachV2EJRSt10shared_ptrINS_18IAggregateFunctionEEEEES5_RKSt6vectorIS3_IKNS_9IDataTypeEESaISA_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 110 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 110 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 110 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 110 | if (have_nullable(argument_types_)) { | 150 | 68 | std::visit( | 151 | 68 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 68 | if (attr.enable_aggregate_function_null_v2) { | 153 | 68 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 68 | AggregateFunctionTemplate>( | 155 | 68 | result.release(), argument_types_, attr.is_window_function)); | 156 | 68 | } else { | 157 | 68 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 68 | AggregateFunctionTemplate>( | 159 | 68 | result.release(), argument_types_, attr.is_window_function)); | 160 | 68 | } | 161 | 68 | }, | 162 | 68 | make_bool_variant(argument_types_.size() > 1), | 163 | 68 | make_bool_variant(result_is_nullable)); | 164 | 68 | } | 165 | | | 166 | 110 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 110 | return AggregateFunctionPtr(result.release()); | 168 | 110 | } |
|
169 | | |
170 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
171 | | static AggregateFunctionPtr create_varargs_return_not_nullable( |
172 | | const DataTypes& argument_types_, const bool result_is_nullable, |
173 | 5.97k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
174 | 5.97k | if (!attr.is_foreach && result_is_nullable) { |
175 | 0 | throw doris::Exception(Status::InternalError( |
176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); |
177 | 0 | } |
178 | 5.97k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
179 | 5.97k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
180 | 5.97k | if (have_nullable(argument_types_)) { |
181 | 3.80k | if (argument_types_.size() > 1) { |
182 | 923 | if (attr.enable_aggregate_function_null_v2) { |
183 | 513 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( |
184 | 513 | result.release(), argument_types_, attr.is_window_function)); |
185 | 513 | } else { |
186 | 410 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
187 | 410 | result.release(), argument_types_, attr.is_window_function)); |
188 | 410 | } |
189 | 2.88k | } else { |
190 | 2.88k | if (attr.enable_aggregate_function_null_v2) { |
191 | 1.09k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
192 | 1.09k | result.release(), argument_types_, attr.is_window_function)); |
193 | 1.79k | } else { |
194 | 1.79k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
195 | 1.79k | result.release(), argument_types_, attr.is_window_function)); |
196 | 1.79k | } |
197 | 2.88k | } |
198 | 3.80k | } |
199 | | |
200 | 5.97k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
201 | 5.97k | return AggregateFunctionPtr(result.release()); |
202 | 5.97k | } _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE2ENS_30AggregateFunctionUniqExactDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 2 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 2 | if (have_nullable(argument_types_)) { | 181 | 2 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 2 | } else { | 190 | 2 | if (attr.enable_aggregate_function_null_v2) { | 191 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 2 | result.release(), argument_types_, attr.is_window_function)); | 193 | 2 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 2 | } | 198 | 2 | } | 199 | | | 200 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 2 | return AggregateFunctionPtr(result.release()); | 202 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE3ENS_30AggregateFunctionUniqExactDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 16 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 16 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 10 | if (attr.enable_aggregate_function_null_v2) { | 191 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 10 | result.release(), argument_types_, attr.is_window_function)); | 193 | 10 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 10 | } | 198 | 10 | } | 199 | | | 200 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 16 | return AggregateFunctionPtr(result.release()); | 202 | 16 | } |
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 | 173 | 712 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 712 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 712 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 712 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 712 | if (have_nullable(argument_types_)) { | 181 | 639 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 639 | } else { | 190 | 639 | if (attr.enable_aggregate_function_null_v2) { | 191 | 227 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 227 | result.release(), argument_types_, attr.is_window_function)); | 193 | 412 | } else { | 194 | 412 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 412 | result.release(), argument_types_, attr.is_window_function)); | 196 | 412 | } | 197 | 639 | } | 198 | 639 | } | 199 | | | 200 | 712 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 712 | return AggregateFunctionPtr(result.release()); | 202 | 712 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE6ENS_30AggregateFunctionUniqExactDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 64 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 64 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 64 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 64 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 64 | if (have_nullable(argument_types_)) { | 181 | 25 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 25 | } else { | 190 | 25 | if (attr.enable_aggregate_function_null_v2) { | 191 | 25 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 25 | result.release(), argument_types_, attr.is_window_function)); | 193 | 25 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 25 | } | 198 | 25 | } | 199 | | | 200 | 64 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 64 | return AggregateFunctionPtr(result.release()); | 202 | 64 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE7ENS_30AggregateFunctionUniqExactDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 2 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 2 | if (have_nullable(argument_types_)) { | 181 | 0 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 0 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 0 | } | 199 | | | 200 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 2 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 12 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 12 | } else { | 190 | 12 | if (attr.enable_aggregate_function_null_v2) { | 191 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 12 | result.release(), argument_types_, attr.is_window_function)); | 193 | 12 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 12 | } | 198 | 12 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE30ENS_30AggregateFunctionUniqExactDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 1 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 1 | if (have_nullable(argument_types_)) { | 181 | 1 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 1 | } else { | 190 | 1 | if (attr.enable_aggregate_function_null_v2) { | 191 | 1 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 1 | result.release(), argument_types_, attr.is_window_function)); | 193 | 1 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 1 | } | 198 | 1 | } | 199 | | | 200 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 1 | return AggregateFunctionPtr(result.release()); | 202 | 1 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE35ENS_30AggregateFunctionUniqExactDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 13 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 13 | if (have_nullable(argument_types_)) { | 181 | 13 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 13 | } else { | 190 | 13 | if (attr.enable_aggregate_function_null_v2) { | 191 | 13 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 13 | result.release(), argument_types_, attr.is_window_function)); | 193 | 13 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 13 | } | 198 | 13 | } | 199 | | | 200 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 13 | return AggregateFunctionPtr(result.release()); | 202 | 13 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE10ENS_30AggregateFunctionUniqExactDataILS3_10EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 548 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 548 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 548 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 548 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 548 | if (have_nullable(argument_types_)) { | 181 | 274 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 274 | } else { | 190 | 274 | if (attr.enable_aggregate_function_null_v2) { | 191 | 274 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 274 | result.release(), argument_types_, attr.is_window_function)); | 193 | 274 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 274 | } | 198 | 274 | } | 199 | | | 200 | 548 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 548 | return AggregateFunctionPtr(result.release()); | 202 | 548 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE17ENS_30AggregateFunctionUniqExactDataILS3_17EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 4 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 4 | if (have_nullable(argument_types_)) { | 181 | 4 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 4 | } else { | 190 | 4 | if (attr.enable_aggregate_function_null_v2) { | 191 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 4 | result.release(), argument_types_, attr.is_window_function)); | 193 | 4 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 4 | } | 198 | 4 | } | 199 | | | 200 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 4 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 10 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 10 | if (have_nullable(argument_types_)) { | 181 | 4 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 4 | } else { | 190 | 4 | if (attr.enable_aggregate_function_null_v2) { | 191 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 4 | result.release(), argument_types_, attr.is_window_function)); | 193 | 4 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 4 | } | 198 | 4 | } | 199 | | | 200 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 10 | return AggregateFunctionPtr(result.release()); | 202 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE26ENS_30AggregateFunctionUniqExactDataILS3_26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 2 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 2 | if (have_nullable(argument_types_)) { | 181 | 2 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 2 | } else { | 190 | 2 | if (attr.enable_aggregate_function_null_v2) { | 191 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 2 | result.release(), argument_types_, attr.is_window_function)); | 193 | 2 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 2 | } | 198 | 2 | } | 199 | | | 200 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 2 | return AggregateFunctionPtr(result.release()); | 202 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE42ENS_30AggregateFunctionUniqExactDataILS3_42EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 16 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 16 | if (have_nullable(argument_types_)) { | 181 | 16 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 16 | } else { | 190 | 16 | if (attr.enable_aggregate_function_null_v2) { | 191 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 16 | result.release(), argument_types_, attr.is_window_function)); | 193 | 16 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 16 | } | 198 | 16 | } | 199 | | | 200 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 16 | return AggregateFunctionPtr(result.release()); | 202 | 16 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 10 | if (attr.enable_aggregate_function_null_v2) { | 191 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 10 | result.release(), argument_types_, attr.is_window_function)); | 193 | 10 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 10 | } | 198 | 10 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 11 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 11 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 11 | return AggregateFunctionPtr(result.release()); | 202 | 11 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 14 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 14 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 14 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 14 | return AggregateFunctionPtr(result.release()); | 202 | 14 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 9 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 9 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 9 | return AggregateFunctionPtr(result.release()); | 202 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 13 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 13 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 10 | if (attr.enable_aggregate_function_null_v2) { | 191 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 10 | result.release(), argument_types_, attr.is_window_function)); | 193 | 10 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 10 | } | 198 | 10 | } | 199 | | | 200 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 13 | return AggregateFunctionPtr(result.release()); | 202 | 13 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 442 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 442 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 442 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 442 | if (have_nullable(argument_types_)) { | 181 | 434 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 434 | } else { | 190 | 434 | if (attr.enable_aggregate_function_null_v2) { | 191 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 20 | result.release(), argument_types_, attr.is_window_function)); | 193 | 414 | } else { | 194 | 414 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 414 | result.release(), argument_types_, attr.is_window_function)); | 196 | 414 | } | 197 | 434 | } | 198 | 434 | } | 199 | | | 200 | 442 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 442 | return AggregateFunctionPtr(result.release()); | 202 | 442 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 908 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 908 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 908 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 908 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 908 | if (have_nullable(argument_types_)) { | 181 | 432 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 432 | } else { | 190 | 432 | if (attr.enable_aggregate_function_null_v2) { | 191 | 18 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 18 | result.release(), argument_types_, attr.is_window_function)); | 193 | 414 | } else { | 194 | 414 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 414 | result.release(), argument_types_, attr.is_window_function)); | 196 | 414 | } | 197 | 432 | } | 198 | 432 | } | 199 | | | 200 | 908 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 908 | return AggregateFunctionPtr(result.release()); | 202 | 908 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 10 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 10 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 10 | return AggregateFunctionPtr(result.release()); | 202 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 15 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 15 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 10 | if (attr.enable_aggregate_function_null_v2) { | 191 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 10 | result.release(), argument_types_, attr.is_window_function)); | 193 | 10 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 10 | } | 198 | 10 | } | 199 | | | 200 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 15 | return AggregateFunctionPtr(result.release()); | 202 | 15 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 10 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 10 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 10 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 10 | return AggregateFunctionPtr(result.release()); | 202 | 10 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 10 | if (attr.enable_aggregate_function_null_v2) { | 191 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 10 | result.release(), argument_types_, attr.is_window_function)); | 193 | 10 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 10 | } | 198 | 10 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 10 | if (attr.enable_aggregate_function_null_v2) { | 191 | 10 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 10 | result.release(), argument_types_, attr.is_window_function)); | 193 | 10 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 10 | } | 198 | 10 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 8 | if (attr.enable_aggregate_function_null_v2) { | 191 | 8 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 8 | result.release(), argument_types_, attr.is_window_function)); | 193 | 8 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 8 | } | 198 | 8 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 2 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 2 | if (have_nullable(argument_types_)) { | 181 | 2 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 2 | } else { | 190 | 2 | if (attr.enable_aggregate_function_null_v2) { | 191 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 2 | result.release(), argument_types_, attr.is_window_function)); | 193 | 2 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 2 | } | 198 | 2 | } | 199 | | | 200 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 2 | return AggregateFunctionPtr(result.release()); | 202 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE29ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 4 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 4 | if (have_nullable(argument_types_)) { | 181 | 0 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 0 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 0 | } | 199 | | | 200 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 4 | return AggregateFunctionPtr(result.release()); | 202 | 4 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 2 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 2 | if (have_nullable(argument_types_)) { | 181 | 0 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 0 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 0 | } | 199 | | | 200 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 2 | return AggregateFunctionPtr(result.release()); | 202 | 2 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE20ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 2 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 2 | if (have_nullable(argument_types_)) { | 181 | 0 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 0 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 0 | } | 199 | | | 200 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 2 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 6 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 6 | if (have_nullable(argument_types_)) { | 181 | 2 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 2 | } else { | 190 | 2 | if (attr.enable_aggregate_function_null_v2) { | 191 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 2 | result.release(), argument_types_, attr.is_window_function)); | 193 | 2 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 2 | } | 198 | 2 | } | 199 | | | 200 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 6 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 17 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 17 | } else { | 190 | 17 | if (attr.enable_aggregate_function_null_v2) { | 191 | 17 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 17 | result.release(), argument_types_, attr.is_window_function)); | 193 | 17 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 17 | } | 198 | 17 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 25 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 25 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 25 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 25 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 25 | if (have_nullable(argument_types_)) { | 181 | 20 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 20 | } else { | 190 | 20 | if (attr.enable_aggregate_function_null_v2) { | 191 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 20 | result.release(), argument_types_, attr.is_window_function)); | 193 | 20 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 20 | } | 198 | 20 | } | 199 | | | 200 | 25 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 25 | return AggregateFunctionPtr(result.release()); | 202 | 25 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 17 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 17 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 17 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 17 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 17 | if (have_nullable(argument_types_)) { | 181 | 16 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 16 | } else { | 190 | 16 | if (attr.enable_aggregate_function_null_v2) { | 191 | 16 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 16 | result.release(), argument_types_, attr.is_window_function)); | 193 | 16 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 16 | } | 198 | 16 | } | 199 | | | 200 | 17 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 17 | return AggregateFunctionPtr(result.release()); | 202 | 17 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 23 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 23 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 18 | if (attr.enable_aggregate_function_null_v2) { | 191 | 18 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 18 | result.release(), argument_types_, attr.is_window_function)); | 193 | 18 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 18 | } | 198 | 18 | } | 199 | | | 200 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 23 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 183 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 183 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 183 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 183 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 183 | if (have_nullable(argument_types_)) { | 181 | 169 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 169 | } else { | 190 | 169 | if (attr.enable_aggregate_function_null_v2) { | 191 | 31 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 31 | result.release(), argument_types_, attr.is_window_function)); | 193 | 138 | } else { | 194 | 138 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 138 | result.release(), argument_types_, attr.is_window_function)); | 196 | 138 | } | 197 | 169 | } | 198 | 169 | } | 199 | | | 200 | 183 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 183 | return AggregateFunctionPtr(result.release()); | 202 | 183 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 61 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 61 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 61 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 61 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 61 | if (have_nullable(argument_types_)) { | 181 | 33 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 33 | } else { | 190 | 33 | if (attr.enable_aggregate_function_null_v2) { | 191 | 33 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 33 | result.release(), argument_types_, attr.is_window_function)); | 193 | 33 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 33 | } | 198 | 33 | } | 199 | | | 200 | 61 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 61 | return AggregateFunctionPtr(result.release()); | 202 | 61 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 12 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 12 | } else { | 190 | 12 | if (attr.enable_aggregate_function_null_v2) { | 191 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 12 | result.release(), argument_types_, attr.is_window_function)); | 193 | 12 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 12 | } | 198 | 12 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE2ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE3ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE4ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 516 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 516 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 516 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 516 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 516 | if (have_nullable(argument_types_)) { | 181 | 10 | if (argument_types_.size() > 1) { | 182 | 10 | if (attr.enable_aggregate_function_null_v2) { | 183 | 10 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 10 | result.release(), argument_types_, attr.is_window_function)); | 185 | 10 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 10 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 10 | } | 199 | | | 200 | 516 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 516 | return AggregateFunctionPtr(result.release()); | 202 | 516 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 478 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 478 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 478 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 478 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 478 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 478 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 478 | return AggregateFunctionPtr(result.release()); | 202 | 478 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 9 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 9 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 9 | return AggregateFunctionPtr(result.release()); | 202 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE6ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 9 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 9 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 9 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 9 | return AggregateFunctionPtr(result.release()); | 202 | 9 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE7ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE8ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE9ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE28ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 8 | if (argument_types_.size() > 1) { | 182 | 8 | if (attr.enable_aggregate_function_null_v2) { | 183 | 8 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 8 | result.release(), argument_types_, attr.is_window_function)); | 185 | 8 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 8 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 8 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE25ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_31AggregateFunctionCollectSetDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 18 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE26ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 33 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 33 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 33 | if (have_nullable(argument_types_)) { | 181 | 25 | if (argument_types_.size() > 1) { | 182 | 25 | if (attr.enable_aggregate_function_null_v2) { | 183 | 25 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 25 | result.release(), argument_types_, attr.is_window_function)); | 185 | 25 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 25 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 25 | } | 199 | | | 200 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 33 | return AggregateFunctionPtr(result.release()); | 202 | 33 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE23ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 32 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 32 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 32 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 32 | if (have_nullable(argument_types_)) { | 181 | 24 | if (argument_types_.size() > 1) { | 182 | 24 | if (attr.enable_aggregate_function_null_v2) { | 183 | 24 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 24 | result.release(), argument_types_, attr.is_window_function)); | 185 | 24 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 24 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 24 | } | 199 | | | 200 | 32 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 32 | return AggregateFunctionPtr(result.release()); | 202 | 32 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE0ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 12 | if (argument_types_.size() > 1) { | 182 | 12 | if (attr.enable_aggregate_function_null_v2) { | 183 | 12 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 12 | result.release(), argument_types_, attr.is_window_function)); | 185 | 12 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 12 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 12 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 91 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 91 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 91 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 91 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 91 | if (have_nullable(argument_types_)) { | 181 | 67 | if (argument_types_.size() > 1) { | 182 | 67 | if (attr.enable_aggregate_function_null_v2) { | 183 | 67 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 67 | result.release(), argument_types_, attr.is_window_function)); | 185 | 67 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 67 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 67 | } | 199 | | | 200 | 91 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 91 | return AggregateFunctionPtr(result.release()); | 202 | 91 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_30AggregateFunctionSequenceCountILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 442 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 442 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 442 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 442 | if (have_nullable(argument_types_)) { | 181 | 426 | if (argument_types_.size() > 1) { | 182 | 426 | if (attr.enable_aggregate_function_null_v2) { | 183 | 16 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 16 | result.release(), argument_types_, attr.is_window_function)); | 185 | 410 | } else { | 186 | 410 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 410 | result.release(), argument_types_, attr.is_window_function)); | 188 | 410 | } | 189 | 426 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 426 | } | 199 | | | 200 | 442 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 442 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 11 | if (attr.enable_aggregate_function_null_v2) { | 183 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 11 | result.release(), argument_types_, attr.is_window_function)); | 185 | 11 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 11 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 11 | if (attr.enable_aggregate_function_null_v2) { | 183 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 11 | result.release(), argument_types_, attr.is_window_function)); | 185 | 11 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 11 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 5 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 5 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 5 | if (have_nullable(argument_types_)) { | 181 | 4 | if (argument_types_.size() > 1) { | 182 | 4 | if (attr.enable_aggregate_function_null_v2) { | 183 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 4 | result.release(), argument_types_, attr.is_window_function)); | 185 | 4 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 4 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 4 | } | 199 | | | 200 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 5 | return AggregateFunctionPtr(result.release()); | 202 | 5 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 11 | if (attr.enable_aggregate_function_null_v2) { | 183 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 11 | result.release(), argument_types_, attr.is_window_function)); | 185 | 11 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 11 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 12 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 12 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 11 | if (attr.enable_aggregate_function_null_v2) { | 183 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 11 | result.release(), argument_types_, attr.is_window_function)); | 185 | 11 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 11 | } | 199 | | | 200 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 12 | return AggregateFunctionPtr(result.release()); | 202 | 12 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 7 | if (argument_types_.size() > 1) { | 182 | 7 | if (attr.enable_aggregate_function_null_v2) { | 183 | 7 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 7 | result.release(), argument_types_, attr.is_window_function)); | 185 | 7 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 7 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 7 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 8 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 8 | if (have_nullable(argument_types_)) { | 181 | 7 | if (argument_types_.size() > 1) { | 182 | 7 | if (attr.enable_aggregate_function_null_v2) { | 183 | 7 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 7 | result.release(), argument_types_, attr.is_window_function)); | 185 | 7 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 7 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 7 | } | 199 | | | 200 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 8 | return AggregateFunctionPtr(result.release()); | 202 | 8 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 18 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 18 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 18 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 43 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 43 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 43 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 43 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 43 | if (have_nullable(argument_types_)) { | 181 | 35 | if (argument_types_.size() > 1) { | 182 | 35 | if (attr.enable_aggregate_function_null_v2) { | 183 | 35 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 35 | result.release(), argument_types_, attr.is_window_function)); | 185 | 35 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 35 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 35 | } | 199 | | | 200 | 43 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 43 | return AggregateFunctionPtr(result.release()); | 202 | 43 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 19 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 19 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 19 | return AggregateFunctionPtr(result.release()); | 202 | 19 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 19 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 19 | if (have_nullable(argument_types_)) { | 181 | 18 | if (argument_types_.size() > 1) { | 182 | 18 | if (attr.enable_aggregate_function_null_v2) { | 183 | 18 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 18 | result.release(), argument_types_, attr.is_window_function)); | 185 | 18 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 18 | } else { | 190 | 0 | if (attr.enable_aggregate_function_null_v2) { | 191 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 0 | result.release(), argument_types_, attr.is_window_function)); | 193 | 0 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 0 | } | 198 | 18 | } | 199 | | | 200 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 19 | return AggregateFunctionPtr(result.release()); | 202 | 19 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE2EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 4 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 4 | if (have_nullable(argument_types_)) { | 181 | 4 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 4 | } else { | 190 | 4 | if (attr.enable_aggregate_function_null_v2) { | 191 | 4 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 4 | result.release(), argument_types_, attr.is_window_function)); | 193 | 4 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 4 | } | 198 | 4 | } | 199 | | | 200 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 4 | return AggregateFunctionPtr(result.release()); | 202 | 4 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 20 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 20 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 20 | return AggregateFunctionPtr(result.release()); | 202 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 20 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 20 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 20 | return AggregateFunctionPtr(result.release()); | 202 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 442 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 442 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 442 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 442 | if (have_nullable(argument_types_)) { | 181 | 432 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 432 | } else { | 190 | 432 | if (attr.enable_aggregate_function_null_v2) { | 191 | 20 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 20 | result.release(), argument_types_, attr.is_window_function)); | 193 | 412 | } else { | 194 | 412 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 412 | result.release(), argument_types_, attr.is_window_function)); | 196 | 412 | } | 197 | 432 | } | 198 | 432 | } | 199 | | | 200 | 442 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 442 | return AggregateFunctionPtr(result.release()); | 202 | 442 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 21 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 21 | if (have_nullable(argument_types_)) { | 181 | 12 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 12 | } else { | 190 | 12 | if (attr.enable_aggregate_function_null_v2) { | 191 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 12 | result.release(), argument_types_, attr.is_window_function)); | 193 | 12 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 12 | } | 198 | 12 | } | 199 | | | 200 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 21 | return AggregateFunctionPtr(result.release()); | 202 | 21 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 20 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 20 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 20 | return AggregateFunctionPtr(result.release()); | 202 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 20 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 20 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 20 | return AggregateFunctionPtr(result.release()); | 202 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 20 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 20 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 20 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 20 | return AggregateFunctionPtr(result.release()); | 202 | 20 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 19 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 19 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 19 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 19 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 19 | if (have_nullable(argument_types_)) { | 181 | 11 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 11 | } else { | 190 | 11 | if (attr.enable_aggregate_function_null_v2) { | 191 | 11 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 11 | result.release(), argument_types_, attr.is_window_function)); | 193 | 11 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 11 | } | 198 | 11 | } | 199 | | | 200 | 19 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 19 | return AggregateFunctionPtr(result.release()); | 202 | 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 | 173 | 39 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 39 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 39 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 39 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 39 | if (have_nullable(argument_types_)) { | 181 | 22 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 22 | } else { | 190 | 22 | if (attr.enable_aggregate_function_null_v2) { | 191 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 22 | result.release(), argument_types_, attr.is_window_function)); | 193 | 22 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 22 | } | 198 | 22 | } | 199 | | | 200 | 39 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 39 | return AggregateFunctionPtr(result.release()); | 202 | 39 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE25EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 38 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 38 | if (have_nullable(argument_types_)) { | 181 | 22 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 22 | } else { | 190 | 22 | if (attr.enable_aggregate_function_null_v2) { | 191 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 22 | result.release(), argument_types_, attr.is_window_function)); | 193 | 22 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 22 | } | 198 | 22 | } | 199 | | | 200 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 38 | return AggregateFunctionPtr(result.release()); | 202 | 38 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_26AggregateFunctionHistogramINS_30AggregateFunctionHistogramDataILNS_13PrimitiveTypeE26EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 38 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 38 | if (!attr.is_foreach && result_is_nullable) { | 175 | 0 | throw doris::Exception(Status::InternalError( | 176 | 0 | "create_varargs_return_not_nullable: result_is_nullable must be false")); | 177 | 0 | } | 178 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 38 | if (have_nullable(argument_types_)) { | 181 | 22 | if (argument_types_.size() > 1) { | 182 | 0 | if (attr.enable_aggregate_function_null_v2) { | 183 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 184 | 0 | result.release(), argument_types_, attr.is_window_function)); | 185 | 0 | } else { | 186 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 0 | result.release(), argument_types_, attr.is_window_function)); | 188 | 0 | } | 189 | 22 | } else { | 190 | 22 | if (attr.enable_aggregate_function_null_v2) { | 191 | 22 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 22 | result.release(), argument_types_, attr.is_window_function)); | 193 | 22 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 22 | } | 198 | 22 | } | 199 | | | 200 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 38 | return AggregateFunctionPtr(result.release()); | 202 | 38 | } |
|
203 | | |
204 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
205 | | static AggregateFunctionPtr create_multi_arguments(const DataTypes& argument_types_, |
206 | | const bool result_is_nullable, |
207 | | const AggregateFunctionAttr& attr, |
208 | 10.6k | TArgs&&... args) { |
209 | 10.6k | if (!(argument_types_.size() > 1)) { |
210 | 0 | throw doris::Exception(Status::InternalError( |
211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); |
212 | 0 | } |
213 | 10.6k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
214 | 10.6k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
215 | 10.6k | if (have_nullable(argument_types_)) { |
216 | 10.3k | std::visit( |
217 | 10.3k | [&](auto result_is_nullable) { |
218 | 10.3k | if (attr.enable_aggregate_function_null_v2) { |
219 | 850 | result.reset(new NullableV2T<true, result_is_nullable, |
220 | 850 | AggregateFunctionTemplate>( |
221 | 850 | result.release(), argument_types_, attr.is_window_function)); |
222 | 9.54k | } else { |
223 | 9.54k | result.reset(new NullableT<true, result_is_nullable, |
224 | 9.54k | AggregateFunctionTemplate>( |
225 | 9.54k | result.release(), argument_types_, attr.is_window_function)); |
226 | 9.54k | } |
227 | 10.3k | }, 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 483 | [&](auto result_is_nullable) { | 218 | 483 | if (attr.enable_aggregate_function_null_v2) { | 219 | 71 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 71 | AggregateFunctionTemplate>( | 221 | 71 | result.release(), argument_types_, attr.is_window_function)); | 222 | 412 | } else { | 223 | 412 | result.reset(new NullableT<true, result_is_nullable, | 224 | 412 | AggregateFunctionTemplate>( | 225 | 412 | result.release(), argument_types_, attr.is_window_function)); | 226 | 412 | } | 227 | 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 | 217 | 15 | [&](auto result_is_nullable) { | 218 | 15 | if (attr.enable_aggregate_function_null_v2) { | 219 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 3 | AggregateFunctionTemplate>( | 221 | 3 | result.release(), argument_types_, attr.is_window_function)); | 222 | 12 | } else { | 223 | 12 | result.reset(new NullableT<true, result_is_nullable, | 224 | 12 | AggregateFunctionTemplate>( | 225 | 12 | result.release(), argument_types_, attr.is_window_function)); | 226 | 12 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 2 | }, |
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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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_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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 2 | }, |
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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 4 | }, |
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_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_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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 8 | [&](auto result_is_nullable) { | 218 | 8 | if (attr.enable_aggregate_function_null_v2) { | 219 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 8 | AggregateFunctionTemplate>( | 221 | 8 | result.release(), argument_types_, attr.is_window_function)); | 222 | 8 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 6 | [&](auto result_is_nullable) { | 218 | 6 | if (attr.enable_aggregate_function_null_v2) { | 219 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 0 | AggregateFunctionTemplate>( | 221 | 0 | result.release(), argument_types_, attr.is_window_function)); | 222 | 6 | } else { | 223 | 6 | result.reset(new NullableT<true, result_is_nullable, | 224 | 6 | AggregateFunctionTemplate>( | 225 | 6 | result.release(), argument_types_, attr.is_window_function)); | 226 | 6 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2.06k | [&](auto result_is_nullable) { | 218 | 2.06k | if (attr.enable_aggregate_function_null_v2) { | 219 | 73 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 73 | AggregateFunctionTemplate>( | 221 | 73 | result.release(), argument_types_, attr.is_window_function)); | 222 | 1.98k | } else { | 223 | 1.98k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.98k | AggregateFunctionTemplate>( | 225 | 1.98k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.98k | } | 227 | 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 | 217 | 618 | [&](auto result_is_nullable) { | 218 | 618 | if (attr.enable_aggregate_function_null_v2) { | 219 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 3 | AggregateFunctionTemplate>( | 221 | 3 | result.release(), argument_types_, attr.is_window_function)); | 222 | 615 | } else { | 223 | 615 | result.reset(new NullableT<true, result_is_nullable, | 224 | 615 | AggregateFunctionTemplate>( | 225 | 615 | result.release(), argument_types_, attr.is_window_function)); | 226 | 615 | } | 227 | 618 | }, |
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 | 217 | 396 | [&](auto result_is_nullable) { | 218 | 396 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 394 | } else { | 223 | 394 | result.reset(new NullableT<true, result_is_nullable, | 224 | 394 | AggregateFunctionTemplate>( | 225 | 394 | result.release(), argument_types_, attr.is_window_function)); | 226 | 394 | } | 227 | 396 | }, |
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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 238 | [&](auto result_is_nullable) { | 218 | 238 | if (attr.enable_aggregate_function_null_v2) { | 219 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 8 | AggregateFunctionTemplate>( | 221 | 8 | result.release(), argument_types_, attr.is_window_function)); | 222 | 230 | } else { | 223 | 230 | result.reset(new NullableT<true, result_is_nullable, | 224 | 230 | AggregateFunctionTemplate>( | 225 | 230 | result.release(), argument_types_, attr.is_window_function)); | 226 | 230 | } | 227 | 238 | }, |
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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 2 | }, |
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_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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 2 | }, |
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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 4 | }, |
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_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_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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 8 | [&](auto result_is_nullable) { | 218 | 8 | if (attr.enable_aggregate_function_null_v2) { | 219 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 8 | AggregateFunctionTemplate>( | 221 | 8 | result.release(), argument_types_, attr.is_window_function)); | 222 | 8 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 439 | [&](auto result_is_nullable) { | 218 | 439 | if (attr.enable_aggregate_function_null_v2) { | 219 | 30 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 30 | AggregateFunctionTemplate>( | 221 | 30 | result.release(), argument_types_, attr.is_window_function)); | 222 | 409 | } else { | 223 | 409 | result.reset(new NullableT<true, result_is_nullable, | 224 | 409 | AggregateFunctionTemplate>( | 225 | 409 | result.release(), argument_types_, attr.is_window_function)); | 226 | 409 | } | 227 | 439 | }, |
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 | 217 | 25 | [&](auto result_is_nullable) { | 218 | 25 | if (attr.enable_aggregate_function_null_v2) { | 219 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 25 | AggregateFunctionTemplate>( | 221 | 25 | result.release(), argument_types_, attr.is_window_function)); | 222 | 25 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 3 | [&](auto result_is_nullable) { | 218 | 3 | if (attr.enable_aggregate_function_null_v2) { | 219 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 3 | AggregateFunctionTemplate>( | 221 | 3 | result.release(), argument_types_, attr.is_window_function)); | 222 | 3 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 1 | [&](auto result_is_nullable) { | 218 | 1 | if (attr.enable_aggregate_function_null_v2) { | 219 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1 | AggregateFunctionTemplate>( | 221 | 1 | result.release(), argument_types_, attr.is_window_function)); | 222 | 1 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 418 | [&](auto result_is_nullable) { | 218 | 418 | if (attr.enable_aggregate_function_null_v2) { | 219 | 7 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 7 | AggregateFunctionTemplate>( | 221 | 7 | result.release(), argument_types_, attr.is_window_function)); | 222 | 411 | } else { | 223 | 411 | result.reset(new NullableT<true, result_is_nullable, | 224 | 411 | AggregateFunctionTemplate>( | 225 | 411 | result.release(), argument_types_, attr.is_window_function)); | 226 | 411 | } | 227 | 418 | }, |
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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 1 | [&](auto result_is_nullable) { | 218 | 1 | if (attr.enable_aggregate_function_null_v2) { | 219 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1 | AggregateFunctionTemplate>( | 221 | 1 | result.release(), argument_types_, attr.is_window_function)); | 222 | 1 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 414 | [&](auto result_is_nullable) { | 218 | 414 | if (attr.enable_aggregate_function_null_v2) { | 219 | 7 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 7 | AggregateFunctionTemplate>( | 221 | 7 | result.release(), argument_types_, attr.is_window_function)); | 222 | 407 | } else { | 223 | 407 | result.reset(new NullableT<true, result_is_nullable, | 224 | 407 | AggregateFunctionTemplate>( | 225 | 407 | result.release(), argument_types_, attr.is_window_function)); | 226 | 407 | } | 227 | 414 | }, |
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 | 217 | 729 | [&](auto result_is_nullable) { | 218 | 729 | if (attr.enable_aggregate_function_null_v2) { | 219 | 44 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 44 | AggregateFunctionTemplate>( | 221 | 44 | result.release(), argument_types_, attr.is_window_function)); | 222 | 685 | } else { | 223 | 685 | result.reset(new NullableT<true, result_is_nullable, | 224 | 685 | AggregateFunctionTemplate>( | 225 | 685 | result.release(), argument_types_, attr.is_window_function)); | 226 | 685 | } | 227 | 729 | }, |
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 | 217 | 38 | [&](auto result_is_nullable) { | 218 | 38 | if (attr.enable_aggregate_function_null_v2) { | 219 | 38 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 38 | AggregateFunctionTemplate>( | 221 | 38 | result.release(), argument_types_, attr.is_window_function)); | 222 | 38 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 38 | }, |
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 | 217 | 17 | [&](auto result_is_nullable) { | 218 | 17 | if (attr.enable_aggregate_function_null_v2) { | 219 | 17 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 17 | AggregateFunctionTemplate>( | 221 | 17 | result.release(), argument_types_, attr.is_window_function)); | 222 | 17 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 20 | [&](auto result_is_nullable) { | 218 | 20 | if (attr.enable_aggregate_function_null_v2) { | 219 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 20 | AggregateFunctionTemplate>( | 221 | 20 | result.release(), argument_types_, attr.is_window_function)); | 222 | 20 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 217 | 6 | [&](auto result_is_nullable) { | 218 | 6 | if (attr.enable_aggregate_function_null_v2) { | 219 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 6 | AggregateFunctionTemplate>( | 221 | 6 | result.release(), argument_types_, attr.is_window_function)); | 222 | 6 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 6 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 217 | 20 | [&](auto result_is_nullable) { | 218 | 20 | if (attr.enable_aggregate_function_null_v2) { | 219 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 20 | AggregateFunctionTemplate>( | 221 | 20 | result.release(), argument_types_, attr.is_window_function)); | 222 | 20 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 20 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 217 | 27 | [&](auto result_is_nullable) { | 218 | 27 | if (attr.enable_aggregate_function_null_v2) { | 219 | 27 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 27 | AggregateFunctionTemplate>( | 221 | 27 | result.release(), argument_types_, attr.is_window_function)); | 222 | 27 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 27 | }, |
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 | 217 | 1.94k | [&](auto result_is_nullable) { | 218 | 1.94k | if (attr.enable_aggregate_function_null_v2) { | 219 | 26 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 26 | AggregateFunctionTemplate>( | 221 | 26 | result.release(), argument_types_, attr.is_window_function)); | 222 | 1.92k | } else { | 223 | 1.92k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.92k | AggregateFunctionTemplate>( | 225 | 1.92k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.92k | } | 227 | 1.94k | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 2 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 217 | 11 | [&](auto result_is_nullable) { | 218 | 11 | if (attr.enable_aggregate_function_null_v2) { | 219 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 11 | AggregateFunctionTemplate>( | 221 | 11 | result.release(), argument_types_, attr.is_window_function)); | 222 | 11 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 11 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSK_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSK_ Line | Count | Source | 217 | 493 | [&](auto result_is_nullable) { | 218 | 493 | if (attr.enable_aggregate_function_null_v2) { | 219 | 82 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 82 | AggregateFunctionTemplate>( | 221 | 82 | result.release(), argument_types_, attr.is_window_function)); | 222 | 411 | } else { | 223 | 411 | result.reset(new NullableT<true, result_is_nullable, | 224 | 411 | AggregateFunctionTemplate>( | 225 | 411 | result.release(), argument_types_, attr.is_window_function)); | 226 | 411 | } | 227 | 493 | }, |
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 | 217 | 510 | [&](auto result_is_nullable) { | 218 | 510 | if (attr.enable_aggregate_function_null_v2) { | 219 | 96 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 96 | AggregateFunctionTemplate>( | 221 | 96 | result.release(), argument_types_, attr.is_window_function)); | 222 | 414 | } else { | 223 | 414 | result.reset(new NullableT<true, result_is_nullable, | 224 | 414 | AggregateFunctionTemplate>( | 225 | 414 | result.release(), argument_types_, attr.is_window_function)); | 226 | 414 | } | 227 | 510 | }, |
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 | 217 | 445 | [&](auto result_is_nullable) { | 218 | 445 | if (attr.enable_aggregate_function_null_v2) { | 219 | 38 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 38 | AggregateFunctionTemplate>( | 221 | 38 | result.release(), argument_types_, attr.is_window_function)); | 222 | 407 | } else { | 223 | 407 | result.reset(new NullableT<true, result_is_nullable, | 224 | 407 | AggregateFunctionTemplate>( | 225 | 407 | result.release(), argument_types_, attr.is_window_function)); | 226 | 407 | } | 227 | 445 | }, |
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 | 217 | 25 | [&](auto result_is_nullable) { | 218 | 25 | if (attr.enable_aggregate_function_null_v2) { | 219 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 25 | AggregateFunctionTemplate>( | 221 | 25 | result.release(), argument_types_, attr.is_window_function)); | 222 | 25 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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 | 217 | 440 | [&](auto result_is_nullable) { | 218 | 440 | if (attr.enable_aggregate_function_null_v2) { | 219 | 28 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 28 | AggregateFunctionTemplate>( | 221 | 28 | result.release(), argument_types_, attr.is_window_function)); | 222 | 412 | } else { | 223 | 412 | result.reset(new NullableT<true, result_is_nullable, | 224 | 412 | AggregateFunctionTemplate>( | 225 | 412 | result.release(), argument_types_, attr.is_window_function)); | 226 | 412 | } | 227 | 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 | 217 | 435 | [&](auto result_is_nullable) { | 218 | 435 | if (attr.enable_aggregate_function_null_v2) { | 219 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 25 | AggregateFunctionTemplate>( | 221 | 25 | result.release(), argument_types_, attr.is_window_function)); | 222 | 410 | } else { | 223 | 410 | result.reset(new NullableT<true, result_is_nullable, | 224 | 410 | AggregateFunctionTemplate>( | 225 | 410 | result.release(), argument_types_, attr.is_window_function)); | 226 | 410 | } | 227 | 435 | }, |
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 | 217 | 11 | [&](auto result_is_nullable) { | 218 | 11 | if (attr.enable_aggregate_function_null_v2) { | 219 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 11 | AggregateFunctionTemplate>( | 221 | 11 | result.release(), argument_types_, attr.is_window_function)); | 222 | 11 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 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_ |
228 | 10.3k | make_bool_variant(result_is_nullable)); |
229 | 10.3k | } |
230 | 10.6k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
231 | 10.6k | return AggregateFunctionPtr(result.release()); |
232 | 10.6k | } 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 498 | TArgs&&... args) { | 209 | 498 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 498 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 498 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 498 | if (have_nullable(argument_types_)) { | 216 | 482 | std::visit( | 217 | 482 | [&](auto result_is_nullable) { | 218 | 482 | if (attr.enable_aggregate_function_null_v2) { | 219 | 482 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 482 | AggregateFunctionTemplate>( | 221 | 482 | result.release(), argument_types_, attr.is_window_function)); | 222 | 482 | } else { | 223 | 482 | result.reset(new NullableT<true, result_is_nullable, | 224 | 482 | AggregateFunctionTemplate>( | 225 | 482 | result.release(), argument_types_, attr.is_window_function)); | 226 | 482 | } | 227 | 482 | }, | 228 | 482 | make_bool_variant(result_is_nullable)); | 229 | 482 | } | 230 | 498 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 498 | return AggregateFunctionPtr(result.release()); | 232 | 498 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 15 | TArgs&&... args) { | 209 | 15 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 15 | if (have_nullable(argument_types_)) { | 216 | 15 | std::visit( | 217 | 15 | [&](auto result_is_nullable) { | 218 | 15 | if (attr.enable_aggregate_function_null_v2) { | 219 | 15 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 15 | AggregateFunctionTemplate>( | 221 | 15 | result.release(), argument_types_, attr.is_window_function)); | 222 | 15 | } else { | 223 | 15 | result.reset(new NullableT<true, result_is_nullable, | 224 | 15 | AggregateFunctionTemplate>( | 225 | 15 | result.release(), argument_types_, attr.is_window_function)); | 226 | 15 | } | 227 | 15 | }, | 228 | 15 | make_bool_variant(result_is_nullable)); | 229 | 15 | } | 230 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 15 | return AggregateFunctionPtr(result.release()); | 232 | 15 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 5 | TArgs&&... args) { | 209 | 5 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 5 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 5 | return AggregateFunctionPtr(result.release()); | 232 | 5 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMinByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 8 | TArgs&&... args) { | 209 | 8 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 8 | if (have_nullable(argument_types_)) { | 216 | 8 | std::visit( | 217 | 8 | [&](auto result_is_nullable) { | 218 | 8 | if (attr.enable_aggregate_function_null_v2) { | 219 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 8 | AggregateFunctionTemplate>( | 221 | 8 | result.release(), argument_types_, attr.is_window_function)); | 222 | 8 | } else { | 223 | 8 | result.reset(new NullableT<true, result_is_nullable, | 224 | 8 | AggregateFunctionTemplate>( | 225 | 8 | result.release(), argument_types_, attr.is_window_function)); | 226 | 8 | } | 227 | 8 | }, | 228 | 8 | make_bool_variant(result_is_nullable)); | 229 | 8 | } | 230 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 8 | return AggregateFunctionPtr(result.release()); | 232 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 6 | TArgs&&... args) { | 209 | 6 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 6 | if (have_nullable(argument_types_)) { | 216 | 6 | std::visit( | 217 | 6 | [&](auto result_is_nullable) { | 218 | 6 | if (attr.enable_aggregate_function_null_v2) { | 219 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 6 | AggregateFunctionTemplate>( | 221 | 6 | result.release(), argument_types_, attr.is_window_function)); | 222 | 6 | } else { | 223 | 6 | result.reset(new NullableT<true, result_is_nullable, | 224 | 6 | AggregateFunctionTemplate>( | 225 | 6 | result.release(), argument_types_, attr.is_window_function)); | 226 | 6 | } | 227 | 6 | }, | 228 | 6 | make_bool_variant(result_is_nullable)); | 229 | 6 | } | 230 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 6 | return AggregateFunctionPtr(result.release()); | 232 | 6 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2.08k | TArgs&&... args) { | 209 | 2.08k | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2.08k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2.08k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2.08k | if (have_nullable(argument_types_)) { | 216 | 2.06k | std::visit( | 217 | 2.06k | [&](auto result_is_nullable) { | 218 | 2.06k | if (attr.enable_aggregate_function_null_v2) { | 219 | 2.06k | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2.06k | AggregateFunctionTemplate>( | 221 | 2.06k | result.release(), argument_types_, attr.is_window_function)); | 222 | 2.06k | } else { | 223 | 2.06k | result.reset(new NullableT<true, result_is_nullable, | 224 | 2.06k | AggregateFunctionTemplate>( | 225 | 2.06k | result.release(), argument_types_, attr.is_window_function)); | 226 | 2.06k | } | 227 | 2.06k | }, | 228 | 2.06k | make_bool_variant(result_is_nullable)); | 229 | 2.06k | } | 230 | 2.08k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2.08k | return AggregateFunctionPtr(result.release()); | 232 | 2.08k | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 617 | TArgs&&... args) { | 209 | 617 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 617 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 617 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 618 | if (have_nullable(argument_types_)) { | 216 | 618 | std::visit( | 217 | 618 | [&](auto result_is_nullable) { | 218 | 618 | if (attr.enable_aggregate_function_null_v2) { | 219 | 618 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 618 | AggregateFunctionTemplate>( | 221 | 618 | result.release(), argument_types_, attr.is_window_function)); | 222 | 618 | } else { | 223 | 618 | result.reset(new NullableT<true, result_is_nullable, | 224 | 618 | AggregateFunctionTemplate>( | 225 | 618 | result.release(), argument_types_, attr.is_window_function)); | 226 | 618 | } | 227 | 618 | }, | 228 | 618 | make_bool_variant(result_is_nullable)); | 229 | 618 | } | 230 | 617 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 617 | return AggregateFunctionPtr(result.release()); | 232 | 617 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 396 | TArgs&&... args) { | 209 | 396 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 396 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 396 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 396 | if (have_nullable(argument_types_)) { | 216 | 396 | std::visit( | 217 | 396 | [&](auto result_is_nullable) { | 218 | 396 | if (attr.enable_aggregate_function_null_v2) { | 219 | 396 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 396 | AggregateFunctionTemplate>( | 221 | 396 | result.release(), argument_types_, attr.is_window_function)); | 222 | 396 | } else { | 223 | 396 | result.reset(new NullableT<true, result_is_nullable, | 224 | 396 | AggregateFunctionTemplate>( | 225 | 396 | result.release(), argument_types_, attr.is_window_function)); | 226 | 396 | } | 227 | 396 | }, | 228 | 396 | make_bool_variant(result_is_nullable)); | 229 | 396 | } | 230 | 396 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 396 | return AggregateFunctionPtr(result.release()); | 232 | 396 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 238 | TArgs&&... args) { | 209 | 238 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 238 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 238 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 238 | if (have_nullable(argument_types_)) { | 216 | 236 | std::visit( | 217 | 236 | [&](auto result_is_nullable) { | 218 | 236 | if (attr.enable_aggregate_function_null_v2) { | 219 | 236 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 236 | AggregateFunctionTemplate>( | 221 | 236 | result.release(), argument_types_, attr.is_window_function)); | 222 | 236 | } else { | 223 | 236 | result.reset(new NullableT<true, result_is_nullable, | 224 | 236 | AggregateFunctionTemplate>( | 225 | 236 | result.release(), argument_types_, attr.is_window_function)); | 226 | 236 | } | 227 | 236 | }, | 228 | 236 | make_bool_variant(result_is_nullable)); | 229 | 236 | } | 230 | 238 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 238 | return AggregateFunctionPtr(result.release()); | 232 | 238 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
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_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 5 | TArgs&&... args) { | 209 | 5 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 5 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 5 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 5 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 5 | return AggregateFunctionPtr(result.release()); | 232 | 5 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE11EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Unexecuted instantiation: _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE12EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 8 | TArgs&&... args) { | 209 | 8 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 8 | if (have_nullable(argument_types_)) { | 216 | 8 | std::visit( | 217 | 8 | [&](auto result_is_nullable) { | 218 | 8 | if (attr.enable_aggregate_function_null_v2) { | 219 | 8 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 8 | AggregateFunctionTemplate>( | 221 | 8 | result.release(), argument_types_, attr.is_window_function)); | 222 | 8 | } else { | 223 | 8 | result.reset(new NullableT<true, result_is_nullable, | 224 | 8 | AggregateFunctionTemplate>( | 225 | 8 | result.release(), argument_types_, attr.is_window_function)); | 226 | 8 | } | 227 | 8 | }, | 228 | 8 | make_bool_variant(result_is_nullable)); | 229 | 8 | } | 230 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 8 | return AggregateFunctionPtr(result.release()); | 232 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 463 | TArgs&&... args) { | 209 | 463 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 463 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 463 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 463 | if (have_nullable(argument_types_)) { | 216 | 442 | std::visit( | 217 | 442 | [&](auto result_is_nullable) { | 218 | 442 | if (attr.enable_aggregate_function_null_v2) { | 219 | 442 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 442 | AggregateFunctionTemplate>( | 221 | 442 | result.release(), argument_types_, attr.is_window_function)); | 222 | 442 | } else { | 223 | 442 | result.reset(new NullableT<true, result_is_nullable, | 224 | 442 | AggregateFunctionTemplate>( | 225 | 442 | result.release(), argument_types_, attr.is_window_function)); | 226 | 442 | } | 227 | 442 | }, | 228 | 442 | make_bool_variant(result_is_nullable)); | 229 | 442 | } | 230 | 463 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 463 | return AggregateFunctionPtr(result.release()); | 232 | 463 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 41 | TArgs&&... args) { | 209 | 41 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 41 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 41 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 41 | if (have_nullable(argument_types_)) { | 216 | 25 | std::visit( | 217 | 25 | [&](auto result_is_nullable) { | 218 | 25 | if (attr.enable_aggregate_function_null_v2) { | 219 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 25 | AggregateFunctionTemplate>( | 221 | 25 | result.release(), argument_types_, attr.is_window_function)); | 222 | 25 | } else { | 223 | 25 | result.reset(new NullableT<true, result_is_nullable, | 224 | 25 | AggregateFunctionTemplate>( | 225 | 25 | result.release(), argument_types_, attr.is_window_function)); | 226 | 25 | } | 227 | 25 | }, | 228 | 25 | make_bool_variant(result_is_nullable)); | 229 | 25 | } | 230 | 41 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 41 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 4 | TArgs&&... args) { | 209 | 4 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 4 | if (have_nullable(argument_types_)) { | 216 | 4 | std::visit( | 217 | 4 | [&](auto result_is_nullable) { | 218 | 4 | if (attr.enable_aggregate_function_null_v2) { | 219 | 4 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 4 | AggregateFunctionTemplate>( | 221 | 4 | result.release(), argument_types_, attr.is_window_function)); | 222 | 4 | } else { | 223 | 4 | result.reset(new NullableT<true, result_is_nullable, | 224 | 4 | AggregateFunctionTemplate>( | 225 | 4 | result.release(), argument_types_, attr.is_window_function)); | 226 | 4 | } | 227 | 4 | }, | 228 | 4 | make_bool_variant(result_is_nullable)); | 229 | 4 | } | 230 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 4 | return AggregateFunctionPtr(result.release()); | 232 | 4 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 3 | TArgs&&... args) { | 209 | 3 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 3 | if (have_nullable(argument_types_)) { | 216 | 3 | std::visit( | 217 | 3 | [&](auto result_is_nullable) { | 218 | 3 | if (attr.enable_aggregate_function_null_v2) { | 219 | 3 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 3 | AggregateFunctionTemplate>( | 221 | 3 | result.release(), argument_types_, attr.is_window_function)); | 222 | 3 | } else { | 223 | 3 | result.reset(new NullableT<true, result_is_nullable, | 224 | 3 | AggregateFunctionTemplate>( | 225 | 3 | result.release(), argument_types_, attr.is_window_function)); | 226 | 3 | } | 227 | 3 | }, | 228 | 3 | make_bool_variant(result_is_nullable)); | 229 | 3 | } | 230 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 3 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 1 | TArgs&&... args) { | 209 | 1 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 1 | if (have_nullable(argument_types_)) { | 216 | 1 | std::visit( | 217 | 1 | [&](auto result_is_nullable) { | 218 | 1 | if (attr.enable_aggregate_function_null_v2) { | 219 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1 | AggregateFunctionTemplate>( | 221 | 1 | result.release(), argument_types_, attr.is_window_function)); | 222 | 1 | } else { | 223 | 1 | result.reset(new NullableT<true, result_is_nullable, | 224 | 1 | AggregateFunctionTemplate>( | 225 | 1 | result.release(), argument_types_, attr.is_window_function)); | 226 | 1 | } | 227 | 1 | }, | 228 | 1 | make_bool_variant(result_is_nullable)); | 229 | 1 | } | 230 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 1 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 423 | TArgs&&... args) { | 209 | 423 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 423 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 423 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 423 | if (have_nullable(argument_types_)) { | 216 | 420 | std::visit( | 217 | 420 | [&](auto result_is_nullable) { | 218 | 420 | if (attr.enable_aggregate_function_null_v2) { | 219 | 420 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 420 | AggregateFunctionTemplate>( | 221 | 420 | result.release(), argument_types_, attr.is_window_function)); | 222 | 420 | } else { | 223 | 420 | result.reset(new NullableT<true, result_is_nullable, | 224 | 420 | AggregateFunctionTemplate>( | 225 | 420 | result.release(), argument_types_, attr.is_window_function)); | 226 | 420 | } | 227 | 420 | }, | 228 | 420 | make_bool_variant(result_is_nullable)); | 229 | 420 | } | 230 | 423 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 423 | return AggregateFunctionPtr(result.release()); | 232 | 423 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE25ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_30AggregateFunctionTopNImplArrayILNS_13PrimitiveTypeE26ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionTopNArrayINS_31AggregateFunctionTopNImplWeightILNS_13PrimitiveTypeE5ELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 1 | TArgs&&... args) { | 209 | 1 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 1 | if (have_nullable(argument_types_)) { | 216 | 1 | std::visit( | 217 | 1 | [&](auto result_is_nullable) { | 218 | 1 | if (attr.enable_aggregate_function_null_v2) { | 219 | 1 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1 | AggregateFunctionTemplate>( | 221 | 1 | result.release(), argument_types_, attr.is_window_function)); | 222 | 1 | } else { | 223 | 1 | result.reset(new NullableT<true, result_is_nullable, | 224 | 1 | AggregateFunctionTemplate>( | 225 | 1 | result.release(), argument_types_, attr.is_window_function)); | 226 | 1 | } | 227 | 1 | }, | 228 | 1 | make_bool_variant(result_is_nullable)); | 229 | 1 | } | 230 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 1 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 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 | 208 | 417 | TArgs&&... args) { | 209 | 417 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 417 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 417 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 417 | if (have_nullable(argument_types_)) { | 216 | 416 | std::visit( | 217 | 416 | [&](auto result_is_nullable) { | 218 | 416 | if (attr.enable_aggregate_function_null_v2) { | 219 | 416 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 416 | AggregateFunctionTemplate>( | 221 | 416 | result.release(), argument_types_, attr.is_window_function)); | 222 | 416 | } else { | 223 | 416 | result.reset(new NullableT<true, result_is_nullable, | 224 | 416 | AggregateFunctionTemplate>( | 225 | 416 | result.release(), argument_types_, attr.is_window_function)); | 226 | 416 | } | 227 | 416 | }, | 228 | 416 | make_bool_variant(result_is_nullable)); | 229 | 416 | } | 230 | 417 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 417 | return AggregateFunctionPtr(result.release()); | 232 | 417 | } |
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 | 208 | 743 | TArgs&&... args) { | 209 | 743 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 743 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 743 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 743 | if (have_nullable(argument_types_)) { | 216 | 728 | std::visit( | 217 | 728 | [&](auto result_is_nullable) { | 218 | 728 | if (attr.enable_aggregate_function_null_v2) { | 219 | 728 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 728 | AggregateFunctionTemplate>( | 221 | 728 | result.release(), argument_types_, attr.is_window_function)); | 222 | 728 | } else { | 223 | 728 | result.reset(new NullableT<true, result_is_nullable, | 224 | 728 | AggregateFunctionTemplate>( | 225 | 728 | result.release(), argument_types_, attr.is_window_function)); | 226 | 728 | } | 227 | 728 | }, | 228 | 728 | make_bool_variant(result_is_nullable)); | 229 | 728 | } | 230 | 743 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 743 | return AggregateFunctionPtr(result.release()); | 232 | 743 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_44AggregateFunctionPercentileApproxThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 46 | TArgs&&... args) { | 209 | 46 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 46 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 46 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 46 | if (have_nullable(argument_types_)) { | 216 | 38 | std::visit( | 217 | 38 | [&](auto result_is_nullable) { | 218 | 38 | if (attr.enable_aggregate_function_null_v2) { | 219 | 38 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 38 | AggregateFunctionTemplate>( | 221 | 38 | result.release(), argument_types_, attr.is_window_function)); | 222 | 38 | } else { | 223 | 38 | result.reset(new NullableT<true, result_is_nullable, | 224 | 38 | AggregateFunctionTemplate>( | 225 | 38 | result.release(), argument_types_, attr.is_window_function)); | 226 | 38 | } | 227 | 38 | }, | 228 | 38 | make_bool_variant(result_is_nullable)); | 229 | 38 | } | 230 | 46 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 46 | return AggregateFunctionPtr(result.release()); | 232 | 46 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_52AggregateFunctionPercentileApproxWeightedThreeParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 23 | TArgs&&... args) { | 209 | 23 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 23 | if (have_nullable(argument_types_)) { | 216 | 17 | std::visit( | 217 | 17 | [&](auto result_is_nullable) { | 218 | 17 | if (attr.enable_aggregate_function_null_v2) { | 219 | 17 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 17 | AggregateFunctionTemplate>( | 221 | 17 | result.release(), argument_types_, attr.is_window_function)); | 222 | 17 | } else { | 223 | 17 | result.reset(new NullableT<true, result_is_nullable, | 224 | 17 | AggregateFunctionTemplate>( | 225 | 17 | result.release(), argument_types_, attr.is_window_function)); | 226 | 17 | } | 227 | 17 | }, | 228 | 17 | make_bool_variant(result_is_nullable)); | 229 | 17 | } | 230 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 23 | return AggregateFunctionPtr(result.release()); | 232 | 23 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_51AggregateFunctionPercentileApproxWeightedFourParamsEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 22 | TArgs&&... args) { | 209 | 22 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 22 | if (have_nullable(argument_types_)) { | 216 | 20 | std::visit( | 217 | 20 | [&](auto result_is_nullable) { | 218 | 20 | if (attr.enable_aggregate_function_null_v2) { | 219 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 20 | AggregateFunctionTemplate>( | 221 | 20 | result.release(), argument_types_, attr.is_window_function)); | 222 | 20 | } else { | 223 | 20 | result.reset(new NullableT<true, result_is_nullable, | 224 | 20 | AggregateFunctionTemplate>( | 225 | 20 | result.release(), argument_types_, attr.is_window_function)); | 226 | 20 | } | 227 | 20 | }, | 228 | 20 | make_bool_variant(result_is_nullable)); | 229 | 20 | } | 230 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 22 | return AggregateFunctionPtr(result.release()); | 232 | 22 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 8 | TArgs&&... args) { | 209 | 8 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 8 | if (have_nullable(argument_types_)) { | 216 | 6 | std::visit( | 217 | 6 | [&](auto result_is_nullable) { | 218 | 6 | if (attr.enable_aggregate_function_null_v2) { | 219 | 6 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 6 | AggregateFunctionTemplate>( | 221 | 6 | result.release(), argument_types_, attr.is_window_function)); | 222 | 6 | } else { | 223 | 6 | result.reset(new NullableT<true, result_is_nullable, | 224 | 6 | AggregateFunctionTemplate>( | 225 | 6 | result.release(), argument_types_, attr.is_window_function)); | 226 | 6 | } | 227 | 6 | }, | 228 | 6 | make_bool_variant(result_is_nullable)); | 229 | 6 | } | 230 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 8 | return AggregateFunctionPtr(result.release()); | 232 | 8 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 20 | TArgs&&... args) { | 209 | 20 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 20 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 20 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 20 | if (have_nullable(argument_types_)) { | 216 | 20 | std::visit( | 217 | 20 | [&](auto result_is_nullable) { | 218 | 20 | if (attr.enable_aggregate_function_null_v2) { | 219 | 20 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 20 | AggregateFunctionTemplate>( | 221 | 20 | result.release(), argument_types_, attr.is_window_function)); | 222 | 20 | } else { | 223 | 20 | result.reset(new NullableT<true, result_is_nullable, | 224 | 20 | AggregateFunctionTemplate>( | 225 | 20 | result.release(), argument_types_, attr.is_window_function)); | 226 | 20 | } | 227 | 20 | }, | 228 | 20 | make_bool_variant(result_is_nullable)); | 229 | 20 | } | 230 | 20 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 20 | return AggregateFunctionPtr(result.release()); | 232 | 20 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 31 | TArgs&&... args) { | 209 | 31 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 31 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 31 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 31 | if (have_nullable(argument_types_)) { | 216 | 27 | std::visit( | 217 | 27 | [&](auto result_is_nullable) { | 218 | 27 | if (attr.enable_aggregate_function_null_v2) { | 219 | 27 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 27 | AggregateFunctionTemplate>( | 221 | 27 | result.release(), argument_types_, attr.is_window_function)); | 222 | 27 | } else { | 223 | 27 | result.reset(new NullableT<true, result_is_nullable, | 224 | 27 | AggregateFunctionTemplate>( | 225 | 27 | result.release(), argument_types_, attr.is_window_function)); | 226 | 27 | } | 227 | 27 | }, | 228 | 27 | make_bool_variant(result_is_nullable)); | 229 | 27 | } | 230 | 31 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 31 | return AggregateFunctionPtr(result.release()); | 232 | 31 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 1.95k | TArgs&&... args) { | 209 | 1.95k | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 1.95k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 1.95k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 1.95k | if (have_nullable(argument_types_)) { | 216 | 1.94k | std::visit( | 217 | 1.94k | [&](auto result_is_nullable) { | 218 | 1.94k | if (attr.enable_aggregate_function_null_v2) { | 219 | 1.94k | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1.94k | AggregateFunctionTemplate>( | 221 | 1.94k | result.release(), argument_types_, attr.is_window_function)); | 222 | 1.94k | } else { | 223 | 1.94k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.94k | AggregateFunctionTemplate>( | 225 | 1.94k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.94k | } | 227 | 1.94k | }, | 228 | 1.94k | make_bool_variant(result_is_nullable)); | 229 | 1.94k | } | 230 | 1.95k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 1.95k | return AggregateFunctionPtr(result.release()); | 232 | 1.95k | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 2 | TArgs&&... args) { | 209 | 2 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 2 | if (have_nullable(argument_types_)) { | 216 | 2 | std::visit( | 217 | 2 | [&](auto result_is_nullable) { | 218 | 2 | if (attr.enable_aggregate_function_null_v2) { | 219 | 2 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 2 | AggregateFunctionTemplate>( | 221 | 2 | result.release(), argument_types_, attr.is_window_function)); | 222 | 2 | } else { | 223 | 2 | result.reset(new NullableT<true, result_is_nullable, | 224 | 2 | AggregateFunctionTemplate>( | 225 | 2 | result.release(), argument_types_, attr.is_window_function)); | 226 | 2 | } | 227 | 2 | }, | 228 | 2 | make_bool_variant(result_is_nullable)); | 229 | 2 | } | 230 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 2 | return AggregateFunctionPtr(result.release()); | 232 | 2 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_27AggregateFunctionPercentileILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 11 | TArgs&&... args) { | 209 | 11 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 11 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 11 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 11 | if (have_nullable(argument_types_)) { | 216 | 11 | std::visit( | 217 | 11 | [&](auto result_is_nullable) { | 218 | 11 | if (attr.enable_aggregate_function_null_v2) { | 219 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 11 | AggregateFunctionTemplate>( | 221 | 11 | result.release(), argument_types_, attr.is_window_function)); | 222 | 11 | } else { | 223 | 11 | result.reset(new NullableT<true, result_is_nullable, | 224 | 11 | AggregateFunctionTemplate>( | 225 | 11 | result.release(), argument_types_, attr.is_window_function)); | 226 | 11 | } | 227 | 11 | }, | 228 | 11 | make_bool_variant(result_is_nullable)); | 229 | 11 | } | 230 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 11 | return AggregateFunctionPtr(result.release()); | 232 | 11 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_29AggregateFunctionWindowFunnelEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 522 | TArgs&&... args) { | 209 | 522 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 522 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 522 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 522 | if (have_nullable(argument_types_)) { | 216 | 493 | std::visit( | 217 | 493 | [&](auto result_is_nullable) { | 218 | 493 | if (attr.enable_aggregate_function_null_v2) { | 219 | 493 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 493 | AggregateFunctionTemplate>( | 221 | 493 | result.release(), argument_types_, attr.is_window_function)); | 222 | 493 | } else { | 223 | 493 | result.reset(new NullableT<true, result_is_nullable, | 224 | 493 | AggregateFunctionTemplate>( | 225 | 493 | result.release(), argument_types_, attr.is_window_function)); | 226 | 493 | } | 227 | 493 | }, | 228 | 493 | make_bool_variant(result_is_nullable)); | 229 | 493 | } | 230 | 522 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 522 | return AggregateFunctionPtr(result.release()); | 232 | 522 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionAvgWeightILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 570 | TArgs&&... args) { | 209 | 570 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 570 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 570 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 570 | if (have_nullable(argument_types_)) { | 216 | 510 | std::visit( | 217 | 510 | [&](auto result_is_nullable) { | 218 | 510 | if (attr.enable_aggregate_function_null_v2) { | 219 | 510 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 510 | AggregateFunctionTemplate>( | 221 | 510 | result.release(), argument_types_, attr.is_window_function)); | 222 | 510 | } else { | 223 | 510 | result.reset(new NullableT<true, result_is_nullable, | 224 | 510 | AggregateFunctionTemplate>( | 225 | 510 | result.release(), argument_types_, attr.is_window_function)); | 226 | 510 | } | 227 | 510 | }, | 228 | 510 | make_bool_variant(result_is_nullable)); | 229 | 510 | } | 230 | 570 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 570 | return AggregateFunctionPtr(result.release()); | 232 | 570 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 454 | TArgs&&... args) { | 209 | 454 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 454 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 454 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 454 | if (have_nullable(argument_types_)) { | 216 | 448 | std::visit( | 217 | 448 | [&](auto result_is_nullable) { | 218 | 448 | if (attr.enable_aggregate_function_null_v2) { | 219 | 448 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 448 | AggregateFunctionTemplate>( | 221 | 448 | result.release(), argument_types_, attr.is_window_function)); | 222 | 448 | } else { | 223 | 448 | result.reset(new NullableT<true, result_is_nullable, | 224 | 448 | AggregateFunctionTemplate>( | 225 | 448 | result.release(), argument_types_, attr.is_window_function)); | 226 | 448 | } | 227 | 448 | }, | 228 | 448 | make_bool_variant(result_is_nullable)); | 229 | 448 | } | 230 | 454 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 454 | return AggregateFunctionPtr(result.release()); | 232 | 454 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_17CorrMomentWelfordEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 26 | TArgs&&... args) { | 209 | 26 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 26 | if (have_nullable(argument_types_)) { | 216 | 25 | std::visit( | 217 | 25 | [&](auto result_is_nullable) { | 218 | 25 | if (attr.enable_aggregate_function_null_v2) { | 219 | 25 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 25 | AggregateFunctionTemplate>( | 221 | 25 | result.release(), argument_types_, attr.is_window_function)); | 222 | 25 | } else { | 223 | 25 | result.reset(new NullableT<true, result_is_nullable, | 224 | 25 | AggregateFunctionTemplate>( | 225 | 25 | result.release(), argument_types_, attr.is_window_function)); | 226 | 25 | } | 227 | 25 | }, | 228 | 25 | make_bool_variant(result_is_nullable)); | 229 | 25 | } | 230 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 26 | return AggregateFunctionPtr(result.release()); | 232 | 26 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_8SampDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 445 | TArgs&&... args) { | 209 | 445 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 445 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 445 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 445 | if (have_nullable(argument_types_)) { | 216 | 441 | std::visit( | 217 | 441 | [&](auto result_is_nullable) { | 218 | 441 | if (attr.enable_aggregate_function_null_v2) { | 219 | 441 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 441 | AggregateFunctionTemplate>( | 221 | 441 | result.release(), argument_types_, attr.is_window_function)); | 222 | 441 | } else { | 223 | 441 | result.reset(new NullableT<true, result_is_nullable, | 224 | 441 | AggregateFunctionTemplate>( | 225 | 441 | result.release(), argument_types_, attr.is_window_function)); | 226 | 441 | } | 227 | 441 | }, | 228 | 441 | make_bool_variant(result_is_nullable)); | 229 | 441 | } | 230 | 445 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 445 | return AggregateFunctionPtr(result.release()); | 232 | 445 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 441 | TArgs&&... args) { | 209 | 441 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 441 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 441 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 441 | if (have_nullable(argument_types_)) { | 216 | 436 | std::visit( | 217 | 436 | [&](auto result_is_nullable) { | 218 | 436 | if (attr.enable_aggregate_function_null_v2) { | 219 | 436 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 436 | AggregateFunctionTemplate>( | 221 | 436 | result.release(), argument_types_, attr.is_window_function)); | 222 | 436 | } else { | 223 | 436 | result.reset(new NullableT<true, result_is_nullable, | 224 | 436 | AggregateFunctionTemplate>( | 225 | 436 | result.release(), argument_types_, attr.is_window_function)); | 226 | 436 | } | 227 | 436 | }, | 228 | 436 | make_bool_variant(result_is_nullable)); | 229 | 436 | } | 230 | 441 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 441 | return AggregateFunctionPtr(result.release()); | 232 | 441 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_36AggregateFunctionPercentileReservoirINS_24QuantileReservoirSamplerEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 13 | TArgs&&... args) { | 209 | 13 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 13 | if (have_nullable(argument_types_)) { | 216 | 11 | std::visit( | 217 | 11 | [&](auto result_is_nullable) { | 218 | 11 | if (attr.enable_aggregate_function_null_v2) { | 219 | 11 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 11 | AggregateFunctionTemplate>( | 221 | 11 | result.release(), argument_types_, attr.is_window_function)); | 222 | 11 | } else { | 223 | 11 | result.reset(new NullableT<true, result_is_nullable, | 224 | 11 | AggregateFunctionTemplate>( | 225 | 11 | result.release(), argument_types_, attr.is_window_function)); | 226 | 11 | } | 227 | 11 | }, | 228 | 11 | make_bool_variant(result_is_nullable)); | 229 | 11 | } | 230 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 13 | return AggregateFunctionPtr(result.release()); | 232 | 13 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_22AggregateFunctionAIAggEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 12 | TArgs&&... args) { | 209 | 12 | if (!(argument_types_.size() > 1)) { | 210 | 0 | throw doris::Exception(Status::InternalError( | 211 | 0 | "create_multi_arguments: argument_types_ size must be > 1")); | 212 | 0 | } | 213 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 12 | if (have_nullable(argument_types_)) { | 216 | 0 | std::visit( | 217 | 0 | [&](auto result_is_nullable) { | 218 | 0 | if (attr.enable_aggregate_function_null_v2) { | 219 | 0 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 0 | AggregateFunctionTemplate>( | 221 | 0 | result.release(), argument_types_, attr.is_window_function)); | 222 | 0 | } else { | 223 | 0 | result.reset(new NullableT<true, result_is_nullable, | 224 | 0 | AggregateFunctionTemplate>( | 225 | 0 | result.release(), argument_types_, attr.is_window_function)); | 226 | 0 | } | 227 | 0 | }, | 228 | 0 | make_bool_variant(result_is_nullable)); | 229 | 0 | } | 230 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 12 | return AggregateFunctionPtr(result.release()); | 232 | 12 | } |
|
233 | | |
234 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
235 | | static AggregateFunctionPtr create_multi_arguments_return_not_nullable( |
236 | | const DataTypes& argument_types_, const bool result_is_nullable, |
237 | 1.08k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
238 | 1.08k | if (!(argument_types_.size() > 1)) { |
239 | 0 | throw doris::Exception( |
240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " |
241 | 0 | "argument_types_ size must be > 1")); |
242 | 0 | } |
243 | 1.08k | if (!attr.is_foreach && result_is_nullable) { |
244 | 0 | throw doris::Exception( |
245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " |
246 | 0 | "result_is_nullable must be false")); |
247 | 0 | } |
248 | 1.08k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
249 | 1.08k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
250 | 1.08k | if (have_nullable(argument_types_)) { |
251 | 989 | if (attr.enable_aggregate_function_null_v2) { |
252 | 164 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( |
253 | 164 | result.release(), argument_types_, attr.is_window_function)); |
254 | 825 | } else { |
255 | 825 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
256 | 825 | result.release(), argument_types_, attr.is_window_function)); |
257 | 825 | } |
258 | 989 | } |
259 | 1.08k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
260 | 1.08k | return AggregateFunctionPtr(result.release()); |
261 | 1.08k | } _ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 4 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 4 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 4 | if (have_nullable(argument_types_)) { | 251 | 4 | if (attr.enable_aggregate_function_null_v2) { | 252 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 4 | result.release(), argument_types_, attr.is_window_function)); | 254 | 4 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 4 | } | 259 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 4 | return AggregateFunctionPtr(result.release()); | 261 | 4 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 6 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 6 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 6 | if (have_nullable(argument_types_)) { | 251 | 6 | if (attr.enable_aggregate_function_null_v2) { | 252 | 6 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 6 | result.release(), argument_types_, attr.is_window_function)); | 254 | 6 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 6 | } | 259 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 6 | return AggregateFunctionPtr(result.release()); | 261 | 6 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 457 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 457 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 457 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 457 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 457 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 457 | if (have_nullable(argument_types_)) { | 251 | 451 | if (attr.enable_aggregate_function_null_v2) { | 252 | 39 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 39 | result.release(), argument_types_, attr.is_window_function)); | 254 | 412 | } else { | 255 | 412 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 412 | result.release(), argument_types_, attr.is_window_function)); | 257 | 412 | } | 258 | 451 | } | 259 | 457 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 457 | return AggregateFunctionPtr(result.release()); | 261 | 457 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 12 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 12 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 12 | if (have_nullable(argument_types_)) { | 251 | 12 | if (attr.enable_aggregate_function_null_v2) { | 252 | 12 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 12 | result.release(), argument_types_, attr.is_window_function)); | 254 | 12 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 12 | } | 259 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 12 | return AggregateFunctionPtr(result.release()); | 261 | 12 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 4 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 4 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 4 | if (have_nullable(argument_types_)) { | 251 | 4 | if (attr.enable_aggregate_function_null_v2) { | 252 | 4 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 4 | result.release(), argument_types_, attr.is_window_function)); | 254 | 4 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 4 | } | 259 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 4 | return AggregateFunctionPtr(result.release()); | 261 | 4 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 2 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 2 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 2 | if (have_nullable(argument_types_)) { | 251 | 2 | if (attr.enable_aggregate_function_null_v2) { | 252 | 2 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 2 | result.release(), argument_types_, attr.is_window_function)); | 254 | 2 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 2 | } | 259 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 2 | return AggregateFunctionPtr(result.release()); | 261 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionPercentileArrayILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 13 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 13 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 13 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 13 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 13 | if (have_nullable(argument_types_)) { | 251 | 13 | if (attr.enable_aggregate_function_null_v2) { | 252 | 13 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 13 | result.release(), argument_types_, attr.is_window_function)); | 254 | 13 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 13 | } | 259 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 13 | return AggregateFunctionPtr(result.release()); | 261 | 13 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 3 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 3 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 3 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 3 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 3 | if (have_nullable(argument_types_)) { | 251 | 2 | if (attr.enable_aggregate_function_null_v2) { | 252 | 2 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 2 | result.release(), argument_types_, attr.is_window_function)); | 254 | 2 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 2 | } | 259 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 3 | return AggregateFunctionPtr(result.release()); | 261 | 3 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 1 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 1 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 1 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 1 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 1 | return AggregateFunctionPtr(result.release()); | 261 | 1 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE3ENS_36AggregateFunctionLinearHistogramDataILS3_3EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 21 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 21 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 21 | if (have_nullable(argument_types_)) { | 251 | 11 | if (attr.enable_aggregate_function_null_v2) { | 252 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 11 | result.release(), argument_types_, attr.is_window_function)); | 254 | 11 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 11 | } | 259 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 21 | return AggregateFunctionPtr(result.release()); | 261 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE4ENS_36AggregateFunctionLinearHistogramDataILS3_4EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 21 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 21 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 21 | if (have_nullable(argument_types_)) { | 251 | 11 | if (attr.enable_aggregate_function_null_v2) { | 252 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 11 | result.release(), argument_types_, attr.is_window_function)); | 254 | 11 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 11 | } | 259 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 21 | return AggregateFunctionPtr(result.release()); | 261 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE5ENS_36AggregateFunctionLinearHistogramDataILS3_5EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 444 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 444 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 444 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 444 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 444 | if (have_nullable(argument_types_)) { | 251 | 429 | if (attr.enable_aggregate_function_null_v2) { | 252 | 16 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 16 | result.release(), argument_types_, attr.is_window_function)); | 254 | 413 | } else { | 255 | 413 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 413 | result.release(), argument_types_, attr.is_window_function)); | 257 | 413 | } | 258 | 429 | } | 259 | 444 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 444 | return AggregateFunctionPtr(result.release()); | 261 | 444 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE6ENS_36AggregateFunctionLinearHistogramDataILS3_6EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 21 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 21 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 21 | if (have_nullable(argument_types_)) { | 251 | 11 | if (attr.enable_aggregate_function_null_v2) { | 252 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 11 | result.release(), argument_types_, attr.is_window_function)); | 254 | 11 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 11 | } | 259 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 21 | return AggregateFunctionPtr(result.release()); | 261 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE7ENS_36AggregateFunctionLinearHistogramDataILS3_7EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 21 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 21 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 21 | if (have_nullable(argument_types_)) { | 251 | 11 | if (attr.enable_aggregate_function_null_v2) { | 252 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 11 | result.release(), argument_types_, attr.is_window_function)); | 254 | 11 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 11 | } | 259 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 21 | return AggregateFunctionPtr(result.release()); | 261 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE8ENS_36AggregateFunctionLinearHistogramDataILS3_8EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 2 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 2 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 2 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 2 | return AggregateFunctionPtr(result.release()); | 261 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE9ENS_36AggregateFunctionLinearHistogramDataILS3_9EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 21 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 21 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 21 | if (have_nullable(argument_types_)) { | 251 | 11 | if (attr.enable_aggregate_function_null_v2) { | 252 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 11 | result.release(), argument_types_, attr.is_window_function)); | 254 | 11 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 11 | } | 259 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 21 | return AggregateFunctionPtr(result.release()); | 261 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE28ENS_36AggregateFunctionLinearHistogramDataILS3_28EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 21 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 21 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 21 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 21 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 21 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 21 | if (have_nullable(argument_types_)) { | 251 | 11 | if (attr.enable_aggregate_function_null_v2) { | 252 | 11 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 11 | result.release(), argument_types_, attr.is_window_function)); | 254 | 11 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 11 | } | 259 | 21 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 21 | return AggregateFunctionPtr(result.release()); | 261 | 21 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE29ENS_36AggregateFunctionLinearHistogramDataILS3_29EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 2 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 2 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 2 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 2 | return AggregateFunctionPtr(result.release()); | 261 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE30ENS_36AggregateFunctionLinearHistogramDataILS3_30EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 2 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 2 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 2 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 2 | return AggregateFunctionPtr(result.release()); | 261 | 2 | } |
_ZN5doris20creator_without_type42create_multi_arguments_return_not_nullableINS_32AggregateFunctionLinearHistogramILNS_13PrimitiveTypeE35ENS_36AggregateFunctionLinearHistogramDataILS3_35EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 237 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 2 | if (!(argument_types_.size() > 1)) { | 239 | 0 | throw doris::Exception( | 240 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 241 | 0 | "argument_types_ size must be > 1")); | 242 | 0 | } | 243 | 2 | if (!attr.is_foreach && result_is_nullable) { | 244 | 0 | throw doris::Exception( | 245 | 0 | Status::InternalError("create_multi_arguments_return_not_nullable: " | 246 | 0 | "result_is_nullable must be false")); | 247 | 0 | } | 248 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 2 | if (have_nullable(argument_types_)) { | 251 | 0 | if (attr.enable_aggregate_function_null_v2) { | 252 | 0 | result.reset(new NullableV2T<true, false, AggregateFunctionTemplate>( | 253 | 0 | result.release(), argument_types_, attr.is_window_function)); | 254 | 0 | } else { | 255 | 0 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 0 | result.release(), argument_types_, attr.is_window_function)); | 257 | 0 | } | 258 | 0 | } | 259 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 2 | return AggregateFunctionPtr(result.release()); | 261 | 2 | } |
|
262 | | |
263 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
264 | | static AggregateFunctionPtr create_unary_arguments(const DataTypes& argument_types_, |
265 | | const bool result_is_nullable, |
266 | | const AggregateFunctionAttr& attr, |
267 | 129k | TArgs&&... args) { |
268 | 129k | if (!(argument_types_.size() == 1)) { |
269 | 0 | throw doris::Exception(Status::InternalError( |
270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); |
271 | 0 | } |
272 | 129k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
273 | 129k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
274 | 129k | if (have_nullable(argument_types_)) { |
275 | 76.6k | std::visit( |
276 | 76.7k | [&](auto result_is_nullable) { |
277 | 76.7k | if (attr.enable_aggregate_function_null_v2) { |
278 | 54.6k | result.reset(new NullableV2T<false, result_is_nullable, |
279 | 54.6k | AggregateFunctionTemplate>( |
280 | 54.6k | result.release(), argument_types_, attr.is_window_function)); |
281 | 54.6k | } else { |
282 | 22.0k | result.reset(new NullableT<false, result_is_nullable, |
283 | 22.0k | AggregateFunctionTemplate>( |
284 | 22.0k | result.release(), argument_types_, attr.is_window_function)); |
285 | 22.0k | } |
286 | 76.7k | }, 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 | 276 | 893 | [&](auto result_is_nullable) { | 277 | 893 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 893 | } else { | 282 | 893 | result.reset(new NullableT<false, result_is_nullable, | 283 | 893 | AggregateFunctionTemplate>( | 284 | 893 | result.release(), argument_types_, attr.is_window_function)); | 285 | 893 | } | 286 | 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 | 276 | 7 | [&](auto result_is_nullable) { | 277 | 7 | if (attr.enable_aggregate_function_null_v2) { | 278 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 7 | AggregateFunctionTemplate>( | 280 | 7 | result.release(), argument_types_, attr.is_window_function)); | 281 | 7 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 111 | [&](auto result_is_nullable) { | 277 | 111 | if (attr.enable_aggregate_function_null_v2) { | 278 | 111 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 111 | AggregateFunctionTemplate>( | 280 | 111 | result.release(), argument_types_, attr.is_window_function)); | 281 | 111 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 111 | }, |
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 | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 26 | result.reset(new NullableT<false, result_is_nullable, | 283 | 26 | AggregateFunctionTemplate>( | 284 | 26 | result.release(), argument_types_, attr.is_window_function)); | 285 | 26 | } | 286 | 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 | 276 | 810 | [&](auto result_is_nullable) { | 277 | 810 | if (attr.enable_aggregate_function_null_v2) { | 278 | 772 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 772 | AggregateFunctionTemplate>( | 280 | 772 | result.release(), argument_types_, attr.is_window_function)); | 281 | 772 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 810 | }, |
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 | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 6 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 1 | [&](auto result_is_nullable) { | 277 | 1 | if (attr.enable_aggregate_function_null_v2) { | 278 | 1 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1 | AggregateFunctionTemplate>( | 280 | 1 | result.release(), argument_types_, attr.is_window_function)); | 281 | 1 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 1 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 576 | [&](auto result_is_nullable) { | 277 | 576 | if (attr.enable_aggregate_function_null_v2) { | 278 | 451 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 451 | AggregateFunctionTemplate>( | 280 | 451 | result.release(), argument_types_, attr.is_window_function)); | 281 | 451 | } else { | 282 | 125 | result.reset(new NullableT<false, result_is_nullable, | 283 | 125 | AggregateFunctionTemplate>( | 284 | 125 | result.release(), argument_types_, attr.is_window_function)); | 285 | 125 | } | 286 | 576 | }, |
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 | 276 | 9 | [&](auto result_is_nullable) { | 277 | 9 | if (attr.enable_aggregate_function_null_v2) { | 278 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 9 | AggregateFunctionTemplate>( | 280 | 9 | result.release(), argument_types_, attr.is_window_function)); | 281 | 9 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 9 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 1 | [&](auto result_is_nullable) { | 277 | 1 | if (attr.enable_aggregate_function_null_v2) { | 278 | 1 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1 | AggregateFunctionTemplate>( | 280 | 1 | result.release(), argument_types_, attr.is_window_function)); | 281 | 1 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 1 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 141 | [&](auto result_is_nullable) { | 277 | 141 | if (attr.enable_aggregate_function_null_v2) { | 278 | 36 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 36 | AggregateFunctionTemplate>( | 280 | 36 | result.release(), argument_types_, attr.is_window_function)); | 281 | 105 | } else { | 282 | 105 | result.reset(new NullableT<false, result_is_nullable, | 283 | 105 | AggregateFunctionTemplate>( | 284 | 105 | result.release(), argument_types_, attr.is_window_function)); | 285 | 105 | } | 286 | 141 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 10 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 143 | [&](auto result_is_nullable) { | 277 | 143 | if (attr.enable_aggregate_function_null_v2) { | 278 | 83 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 83 | AggregateFunctionTemplate>( | 280 | 83 | result.release(), argument_types_, attr.is_window_function)); | 281 | 83 | } else { | 282 | 60 | result.reset(new NullableT<false, result_is_nullable, | 283 | 60 | AggregateFunctionTemplate>( | 284 | 60 | result.release(), argument_types_, attr.is_window_function)); | 285 | 60 | } | 286 | 143 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 9 | [&](auto result_is_nullable) { | 277 | 9 | if (attr.enable_aggregate_function_null_v2) { | 278 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 9 | AggregateFunctionTemplate>( | 280 | 9 | result.release(), argument_types_, attr.is_window_function)); | 281 | 9 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 9 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 61 | [&](auto result_is_nullable) { | 277 | 61 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 36 | } else { | 282 | 36 | result.reset(new NullableT<false, result_is_nullable, | 283 | 36 | AggregateFunctionTemplate>( | 284 | 36 | result.release(), argument_types_, attr.is_window_function)); | 285 | 36 | } | 286 | 61 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 433 | [&](auto result_is_nullable) { | 277 | 433 | if (attr.enable_aggregate_function_null_v2) { | 278 | 23 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 23 | AggregateFunctionTemplate>( | 280 | 23 | result.release(), argument_types_, attr.is_window_function)); | 281 | 410 | } else { | 282 | 410 | result.reset(new NullableT<false, result_is_nullable, | 283 | 410 | AggregateFunctionTemplate>( | 284 | 410 | result.release(), argument_types_, attr.is_window_function)); | 285 | 410 | } | 286 | 433 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 5.20k | [&](auto result_is_nullable) { | 277 | 5.20k | if (attr.enable_aggregate_function_null_v2) { | 278 | 4.58k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4.58k | AggregateFunctionTemplate>( | 280 | 4.58k | result.release(), argument_types_, attr.is_window_function)); | 281 | 4.58k | } else { | 282 | 617 | result.reset(new NullableT<false, result_is_nullable, | 283 | 617 | AggregateFunctionTemplate>( | 284 | 617 | result.release(), argument_types_, attr.is_window_function)); | 285 | 617 | } | 286 | 5.20k | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 8 | [&](auto result_is_nullable) { | 277 | 8 | if (attr.enable_aggregate_function_null_v2) { | 278 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 8 | AggregateFunctionTemplate>( | 280 | 8 | result.release(), argument_types_, attr.is_window_function)); | 281 | 8 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 8 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 3.36k | [&](auto result_is_nullable) { | 277 | 3.36k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.07k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.07k | AggregateFunctionTemplate>( | 280 | 1.07k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.29k | } else { | 282 | 2.29k | result.reset(new NullableT<false, result_is_nullable, | 283 | 2.29k | AggregateFunctionTemplate>( | 284 | 2.29k | result.release(), argument_types_, attr.is_window_function)); | 285 | 2.29k | } | 286 | 3.36k | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 7 | [&](auto result_is_nullable) { | 277 | 7 | if (attr.enable_aggregate_function_null_v2) { | 278 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 7 | AggregateFunctionTemplate>( | 280 | 7 | result.release(), argument_types_, attr.is_window_function)); | 281 | 7 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 714 | [&](auto result_is_nullable) { | 277 | 714 | if (attr.enable_aggregate_function_null_v2) { | 278 | 51 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 51 | AggregateFunctionTemplate>( | 280 | 51 | result.release(), argument_types_, attr.is_window_function)); | 281 | 663 | } else { | 282 | 663 | result.reset(new NullableT<false, result_is_nullable, | 283 | 663 | AggregateFunctionTemplate>( | 284 | 663 | result.release(), argument_types_, attr.is_window_function)); | 285 | 663 | } | 286 | 714 | }, |
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 | 276 | 70 | [&](auto result_is_nullable) { | 277 | 70 | if (attr.enable_aggregate_function_null_v2) { | 278 | 30 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 30 | AggregateFunctionTemplate>( | 280 | 30 | result.release(), argument_types_, attr.is_window_function)); | 281 | 40 | } else { | 282 | 40 | result.reset(new NullableT<false, result_is_nullable, | 283 | 40 | AggregateFunctionTemplate>( | 284 | 40 | result.release(), argument_types_, attr.is_window_function)); | 285 | 40 | } | 286 | 70 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 7 | [&](auto result_is_nullable) { | 277 | 7 | if (attr.enable_aggregate_function_null_v2) { | 278 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 7 | AggregateFunctionTemplate>( | 280 | 7 | result.release(), argument_types_, attr.is_window_function)); | 281 | 7 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 7 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 1.48k | [&](auto result_is_nullable) { | 277 | 1.48k | if (attr.enable_aggregate_function_null_v2) { | 278 | 304 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 304 | AggregateFunctionTemplate>( | 280 | 304 | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.17k | } else { | 282 | 1.17k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.17k | AggregateFunctionTemplate>( | 284 | 1.17k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.17k | } | 286 | 1.48k | }, |
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 | 276 | 4.73k | [&](auto result_is_nullable) { | 277 | 4.73k | if (attr.enable_aggregate_function_null_v2) { | 278 | 4.71k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4.71k | AggregateFunctionTemplate>( | 280 | 4.71k | result.release(), argument_types_, attr.is_window_function)); | 281 | 4.71k | } else { | 282 | 24 | result.reset(new NullableT<false, result_is_nullable, | 283 | 24 | AggregateFunctionTemplate>( | 284 | 24 | result.release(), argument_types_, attr.is_window_function)); | 285 | 24 | } | 286 | 4.73k | }, |
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 | 276 | 1.80k | [&](auto result_is_nullable) { | 277 | 1.80k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.66k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.66k | AggregateFunctionTemplate>( | 280 | 1.66k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.66k | } else { | 282 | 143 | result.reset(new NullableT<false, result_is_nullable, | 283 | 143 | AggregateFunctionTemplate>( | 284 | 143 | result.release(), argument_types_, attr.is_window_function)); | 285 | 143 | } | 286 | 1.80k | }, |
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 | 276 | 781 | [&](auto result_is_nullable) { | 277 | 781 | if (attr.enable_aggregate_function_null_v2) { | 278 | 620 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 620 | AggregateFunctionTemplate>( | 280 | 620 | result.release(), argument_types_, attr.is_window_function)); | 281 | 620 | } else { | 282 | 161 | result.reset(new NullableT<false, result_is_nullable, | 283 | 161 | AggregateFunctionTemplate>( | 284 | 161 | result.release(), argument_types_, attr.is_window_function)); | 285 | 161 | } | 286 | 781 | }, |
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 | 276 | 1.52k | [&](auto result_is_nullable) { | 277 | 1.52k | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.51k | } else { | 282 | 1.51k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.51k | AggregateFunctionTemplate>( | 284 | 1.51k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.51k | } | 286 | 1.52k | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 18 | AggregateFunctionTemplate>( | 280 | 18 | result.release(), argument_types_, attr.is_window_function)); | 281 | 18 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 22 | }, |
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 | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 18 | AggregateFunctionTemplate>( | 280 | 18 | result.release(), argument_types_, attr.is_window_function)); | 281 | 18 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 22 | }, |
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 | 276 | 223 | [&](auto result_is_nullable) { | 277 | 223 | if (attr.enable_aggregate_function_null_v2) { | 278 | 160 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 160 | AggregateFunctionTemplate>( | 280 | 160 | result.release(), argument_types_, attr.is_window_function)); | 281 | 160 | } else { | 282 | 63 | result.reset(new NullableT<false, result_is_nullable, | 283 | 63 | AggregateFunctionTemplate>( | 284 | 63 | result.release(), argument_types_, attr.is_window_function)); | 285 | 63 | } | 286 | 223 | }, |
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 | 276 | 631 | [&](auto result_is_nullable) { | 277 | 631 | if (attr.enable_aggregate_function_null_v2) { | 278 | 354 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 354 | AggregateFunctionTemplate>( | 280 | 354 | result.release(), argument_types_, attr.is_window_function)); | 281 | 354 | } else { | 282 | 277 | result.reset(new NullableT<false, result_is_nullable, | 283 | 277 | AggregateFunctionTemplate>( | 284 | 277 | result.release(), argument_types_, attr.is_window_function)); | 285 | 277 | } | 286 | 631 | }, |
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 | 276 | 654 | [&](auto result_is_nullable) { | 277 | 654 | if (attr.enable_aggregate_function_null_v2) { | 278 | 467 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 467 | AggregateFunctionTemplate>( | 280 | 467 | result.release(), argument_types_, attr.is_window_function)); | 281 | 467 | } else { | 282 | 187 | result.reset(new NullableT<false, result_is_nullable, | 283 | 187 | AggregateFunctionTemplate>( | 284 | 187 | result.release(), argument_types_, attr.is_window_function)); | 285 | 187 | } | 286 | 654 | }, |
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 | 276 | 10.3k | [&](auto result_is_nullable) { | 277 | 10.3k | if (attr.enable_aggregate_function_null_v2) { | 278 | 9.42k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 9.42k | AggregateFunctionTemplate>( | 280 | 9.42k | result.release(), argument_types_, attr.is_window_function)); | 281 | 9.42k | } else { | 282 | 897 | result.reset(new NullableT<false, result_is_nullable, | 283 | 897 | AggregateFunctionTemplate>( | 284 | 897 | result.release(), argument_types_, attr.is_window_function)); | 285 | 897 | } | 286 | 10.3k | }, |
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 | 276 | 3.46k | [&](auto result_is_nullable) { | 277 | 3.46k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.22k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.22k | AggregateFunctionTemplate>( | 280 | 3.22k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.22k | } else { | 282 | 241 | result.reset(new NullableT<false, result_is_nullable, | 283 | 241 | AggregateFunctionTemplate>( | 284 | 241 | result.release(), argument_types_, attr.is_window_function)); | 285 | 241 | } | 286 | 3.46k | }, |
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 | 276 | 413 | [&](auto result_is_nullable) { | 277 | 413 | if (attr.enable_aggregate_function_null_v2) { | 278 | 149 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 149 | AggregateFunctionTemplate>( | 280 | 149 | result.release(), argument_types_, attr.is_window_function)); | 281 | 264 | } else { | 282 | 264 | result.reset(new NullableT<false, result_is_nullable, | 283 | 264 | AggregateFunctionTemplate>( | 284 | 264 | result.release(), argument_types_, attr.is_window_function)); | 285 | 264 | } | 286 | 413 | }, |
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 | 276 | 477 | [&](auto result_is_nullable) { | 277 | 477 | if (attr.enable_aggregate_function_null_v2) { | 278 | 296 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 296 | AggregateFunctionTemplate>( | 280 | 296 | result.release(), argument_types_, attr.is_window_function)); | 281 | 296 | } else { | 282 | 181 | result.reset(new NullableT<false, result_is_nullable, | 283 | 181 | AggregateFunctionTemplate>( | 284 | 181 | result.release(), argument_types_, attr.is_window_function)); | 285 | 181 | } | 286 | 477 | }, |
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 | 276 | 920 | [&](auto result_is_nullable) { | 277 | 920 | if (attr.enable_aggregate_function_null_v2) { | 278 | 460 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 460 | AggregateFunctionTemplate>( | 280 | 460 | result.release(), argument_types_, attr.is_window_function)); | 281 | 460 | } else { | 282 | 460 | result.reset(new NullableT<false, result_is_nullable, | 283 | 460 | AggregateFunctionTemplate>( | 284 | 460 | result.release(), argument_types_, attr.is_window_function)); | 285 | 460 | } | 286 | 920 | }, |
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 | 276 | 183 | [&](auto result_is_nullable) { | 277 | 183 | if (attr.enable_aggregate_function_null_v2) { | 278 | 129 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 129 | AggregateFunctionTemplate>( | 280 | 129 | result.release(), argument_types_, attr.is_window_function)); | 281 | 129 | } else { | 282 | 54 | result.reset(new NullableT<false, result_is_nullable, | 283 | 54 | AggregateFunctionTemplate>( | 284 | 54 | result.release(), argument_types_, attr.is_window_function)); | 285 | 54 | } | 286 | 183 | }, |
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 | 276 | 1.95k | [&](auto result_is_nullable) { | 277 | 1.95k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.87k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.87k | AggregateFunctionTemplate>( | 280 | 1.87k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.87k | } else { | 282 | 78 | result.reset(new NullableT<false, result_is_nullable, | 283 | 78 | AggregateFunctionTemplate>( | 284 | 78 | result.release(), argument_types_, attr.is_window_function)); | 285 | 78 | } | 286 | 1.95k | }, |
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 | 276 | 669 | [&](auto result_is_nullable) { | 277 | 669 | if (attr.enable_aggregate_function_null_v2) { | 278 | 626 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 626 | AggregateFunctionTemplate>( | 280 | 626 | result.release(), argument_types_, attr.is_window_function)); | 281 | 626 | } else { | 282 | 43 | result.reset(new NullableT<false, result_is_nullable, | 283 | 43 | AggregateFunctionTemplate>( | 284 | 43 | result.release(), argument_types_, attr.is_window_function)); | 285 | 43 | } | 286 | 669 | }, |
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 | 276 | 51 | [&](auto result_is_nullable) { | 277 | 51 | if (attr.enable_aggregate_function_null_v2) { | 278 | 39 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 39 | AggregateFunctionTemplate>( | 280 | 39 | result.release(), argument_types_, attr.is_window_function)); | 281 | 39 | } else { | 282 | 12 | result.reset(new NullableT<false, result_is_nullable, | 283 | 12 | AggregateFunctionTemplate>( | 284 | 12 | result.release(), argument_types_, attr.is_window_function)); | 285 | 12 | } | 286 | 51 | }, |
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 | 276 | 4 | [&](auto result_is_nullable) { | 277 | 4 | if (attr.enable_aggregate_function_null_v2) { | 278 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4 | AggregateFunctionTemplate>( | 280 | 4 | result.release(), argument_types_, attr.is_window_function)); | 281 | 4 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 3.61k | [&](auto result_is_nullable) { | 277 | 3.61k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.59k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.59k | AggregateFunctionTemplate>( | 280 | 3.59k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.59k | } else { | 282 | 21 | result.reset(new NullableT<false, result_is_nullable, | 283 | 21 | AggregateFunctionTemplate>( | 284 | 21 | result.release(), argument_types_, attr.is_window_function)); | 285 | 21 | } | 286 | 3.61k | }, |
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 | 276 | 1.57k | [&](auto result_is_nullable) { | 277 | 1.57k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.52k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.52k | AggregateFunctionTemplate>( | 280 | 1.52k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.52k | } else { | 282 | 50 | result.reset(new NullableT<false, result_is_nullable, | 283 | 50 | AggregateFunctionTemplate>( | 284 | 50 | result.release(), argument_types_, attr.is_window_function)); | 285 | 50 | } | 286 | 1.57k | }, |
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 | 276 | 547 | [&](auto result_is_nullable) { | 277 | 547 | if (attr.enable_aggregate_function_null_v2) { | 278 | 488 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 488 | AggregateFunctionTemplate>( | 280 | 488 | result.release(), argument_types_, attr.is_window_function)); | 281 | 488 | } else { | 282 | 59 | result.reset(new NullableT<false, result_is_nullable, | 283 | 59 | AggregateFunctionTemplate>( | 284 | 59 | result.release(), argument_types_, attr.is_window_function)); | 285 | 59 | } | 286 | 547 | }, |
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 | 276 | 1.52k | [&](auto result_is_nullable) { | 277 | 1.52k | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.51k | } else { | 282 | 1.51k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.51k | AggregateFunctionTemplate>( | 284 | 1.51k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.51k | } | 286 | 1.52k | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 18 | [&](auto result_is_nullable) { | 277 | 18 | if (attr.enable_aggregate_function_null_v2) { | 278 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 14 | AggregateFunctionTemplate>( | 280 | 14 | result.release(), argument_types_, attr.is_window_function)); | 281 | 14 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 18 | }, |
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 | 276 | 18 | [&](auto result_is_nullable) { | 277 | 18 | if (attr.enable_aggregate_function_null_v2) { | 278 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 14 | AggregateFunctionTemplate>( | 280 | 14 | result.release(), argument_types_, attr.is_window_function)); | 281 | 14 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 18 | }, |
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 | 276 | 145 | [&](auto result_is_nullable) { | 277 | 145 | if (attr.enable_aggregate_function_null_v2) { | 278 | 106 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 106 | AggregateFunctionTemplate>( | 280 | 106 | result.release(), argument_types_, attr.is_window_function)); | 281 | 106 | } else { | 282 | 39 | result.reset(new NullableT<false, result_is_nullable, | 283 | 39 | AggregateFunctionTemplate>( | 284 | 39 | result.release(), argument_types_, attr.is_window_function)); | 285 | 39 | } | 286 | 145 | }, |
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 | 276 | 380 | [&](auto result_is_nullable) { | 277 | 380 | if (attr.enable_aggregate_function_null_v2) { | 278 | 282 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 282 | AggregateFunctionTemplate>( | 280 | 282 | result.release(), argument_types_, attr.is_window_function)); | 281 | 282 | } else { | 282 | 98 | result.reset(new NullableT<false, result_is_nullable, | 283 | 98 | AggregateFunctionTemplate>( | 284 | 98 | result.release(), argument_types_, attr.is_window_function)); | 285 | 98 | } | 286 | 380 | }, |
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 | 276 | 381 | [&](auto result_is_nullable) { | 277 | 381 | if (attr.enable_aggregate_function_null_v2) { | 278 | 297 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 297 | AggregateFunctionTemplate>( | 280 | 297 | result.release(), argument_types_, attr.is_window_function)); | 281 | 297 | } else { | 282 | 84 | result.reset(new NullableT<false, result_is_nullable, | 283 | 84 | AggregateFunctionTemplate>( | 284 | 84 | result.release(), argument_types_, attr.is_window_function)); | 285 | 84 | } | 286 | 381 | }, |
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 | 276 | 8.87k | [&](auto result_is_nullable) { | 277 | 8.87k | if (attr.enable_aggregate_function_null_v2) { | 278 | 8.48k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 8.48k | AggregateFunctionTemplate>( | 280 | 8.48k | result.release(), argument_types_, attr.is_window_function)); | 281 | 8.48k | } else { | 282 | 388 | result.reset(new NullableT<false, result_is_nullable, | 283 | 388 | AggregateFunctionTemplate>( | 284 | 388 | result.release(), argument_types_, attr.is_window_function)); | 285 | 388 | } | 286 | 8.87k | }, |
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 | 276 | 2.60k | [&](auto result_is_nullable) { | 277 | 2.60k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.52k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.52k | AggregateFunctionTemplate>( | 280 | 2.52k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.52k | } else { | 282 | 84 | result.reset(new NullableT<false, result_is_nullable, | 283 | 84 | AggregateFunctionTemplate>( | 284 | 84 | result.release(), argument_types_, attr.is_window_function)); | 285 | 84 | } | 286 | 2.60k | }, |
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 | 276 | 163 | [&](auto result_is_nullable) { | 277 | 163 | if (attr.enable_aggregate_function_null_v2) { | 278 | 125 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 125 | AggregateFunctionTemplate>( | 280 | 125 | result.release(), argument_types_, attr.is_window_function)); | 281 | 125 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 163 | }, |
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 | 276 | 258 | [&](auto result_is_nullable) { | 277 | 258 | if (attr.enable_aggregate_function_null_v2) { | 278 | 198 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 198 | AggregateFunctionTemplate>( | 280 | 198 | result.release(), argument_types_, attr.is_window_function)); | 281 | 198 | } else { | 282 | 60 | result.reset(new NullableT<false, result_is_nullable, | 283 | 60 | AggregateFunctionTemplate>( | 284 | 60 | result.release(), argument_types_, attr.is_window_function)); | 285 | 60 | } | 286 | 258 | }, |
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 | 276 | 349 | [&](auto result_is_nullable) { | 277 | 349 | if (attr.enable_aggregate_function_null_v2) { | 278 | 311 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 311 | AggregateFunctionTemplate>( | 280 | 311 | result.release(), argument_types_, attr.is_window_function)); | 281 | 311 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 349 | }, |
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 | 276 | 132 | [&](auto result_is_nullable) { | 277 | 132 | if (attr.enable_aggregate_function_null_v2) { | 278 | 114 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 114 | AggregateFunctionTemplate>( | 280 | 114 | result.release(), argument_types_, attr.is_window_function)); | 281 | 114 | } else { | 282 | 18 | result.reset(new NullableT<false, result_is_nullable, | 283 | 18 | AggregateFunctionTemplate>( | 284 | 18 | result.release(), argument_types_, attr.is_window_function)); | 285 | 18 | } | 286 | 132 | }, |
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 | 276 | 1.81k | [&](auto result_is_nullable) { | 277 | 1.81k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.79k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.79k | AggregateFunctionTemplate>( | 280 | 1.79k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.79k | } else { | 282 | 19 | result.reset(new NullableT<false, result_is_nullable, | 283 | 19 | AggregateFunctionTemplate>( | 284 | 19 | result.release(), argument_types_, attr.is_window_function)); | 285 | 19 | } | 286 | 1.81k | }, |
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 | 276 | 620 | [&](auto result_is_nullable) { | 277 | 620 | if (attr.enable_aggregate_function_null_v2) { | 278 | 580 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 580 | AggregateFunctionTemplate>( | 280 | 580 | result.release(), argument_types_, attr.is_window_function)); | 281 | 580 | } else { | 282 | 40 | result.reset(new NullableT<false, result_is_nullable, | 283 | 40 | AggregateFunctionTemplate>( | 284 | 40 | result.release(), argument_types_, attr.is_window_function)); | 285 | 40 | } | 286 | 620 | }, |
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 | 276 | 51 | [&](auto result_is_nullable) { | 277 | 51 | if (attr.enable_aggregate_function_null_v2) { | 278 | 39 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 39 | AggregateFunctionTemplate>( | 280 | 39 | result.release(), argument_types_, attr.is_window_function)); | 281 | 39 | } else { | 282 | 12 | result.reset(new NullableT<false, result_is_nullable, | 283 | 12 | AggregateFunctionTemplate>( | 284 | 12 | result.release(), argument_types_, attr.is_window_function)); | 285 | 12 | } | 286 | 51 | }, |
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 | 276 | 4 | [&](auto result_is_nullable) { | 277 | 4 | if (attr.enable_aggregate_function_null_v2) { | 278 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4 | AggregateFunctionTemplate>( | 280 | 4 | result.release(), argument_types_, attr.is_window_function)); | 281 | 4 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 122 | [&](auto result_is_nullable) { | 277 | 122 | if (attr.enable_aggregate_function_null_v2) { | 278 | 122 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 122 | AggregateFunctionTemplate>( | 280 | 122 | result.release(), argument_types_, attr.is_window_function)); | 281 | 122 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 122 | }, |
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 | 276 | 14 | [&](auto result_is_nullable) { | 277 | 14 | if (attr.enable_aggregate_function_null_v2) { | 278 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 14 | AggregateFunctionTemplate>( | 280 | 14 | result.release(), argument_types_, attr.is_window_function)); | 281 | 14 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 14 | }, |
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 | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 22 | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 14 | [&](auto result_is_nullable) { | 277 | 14 | if (attr.enable_aggregate_function_null_v2) { | 278 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 14 | AggregateFunctionTemplate>( | 280 | 14 | result.release(), argument_types_, attr.is_window_function)); | 281 | 14 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 14 | }, |
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 | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 10 | }, |
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 | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 537 | [&](auto result_is_nullable) { | 277 | 537 | if (attr.enable_aggregate_function_null_v2) { | 278 | 122 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 122 | AggregateFunctionTemplate>( | 280 | 122 | result.release(), argument_types_, attr.is_window_function)); | 281 | 415 | } else { | 282 | 415 | result.reset(new NullableT<false, result_is_nullable, | 283 | 415 | AggregateFunctionTemplate>( | 284 | 415 | result.release(), argument_types_, attr.is_window_function)); | 285 | 415 | } | 286 | 537 | }, |
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 | 276 | 40 | [&](auto result_is_nullable) { | 277 | 40 | if (attr.enable_aggregate_function_null_v2) { | 278 | 40 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 40 | AggregateFunctionTemplate>( | 280 | 40 | result.release(), argument_types_, attr.is_window_function)); | 281 | 40 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 40 | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 10 | }, |
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 | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 10 | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 7 | [&](auto result_is_nullable) { | 277 | 7 | if (attr.enable_aggregate_function_null_v2) { | 278 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 7 | AggregateFunctionTemplate>( | 280 | 7 | result.release(), argument_types_, attr.is_window_function)); | 281 | 7 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 7 | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 87 | [&](auto result_is_nullable) { | 277 | 87 | if (attr.enable_aggregate_function_null_v2) { | 278 | 83 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 83 | AggregateFunctionTemplate>( | 280 | 83 | result.release(), argument_types_, attr.is_window_function)); | 281 | 83 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 87 | }, |
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 | 276 | 8 | [&](auto result_is_nullable) { | 277 | 8 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 6 | result.reset(new NullableT<false, result_is_nullable, | 283 | 6 | AggregateFunctionTemplate>( | 284 | 6 | result.release(), argument_types_, attr.is_window_function)); | 285 | 6 | } | 286 | 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 | 276 | 157 | [&](auto result_is_nullable) { | 277 | 157 | if (attr.enable_aggregate_function_null_v2) { | 278 | 156 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 156 | AggregateFunctionTemplate>( | 280 | 156 | result.release(), argument_types_, attr.is_window_function)); | 281 | 156 | } else { | 282 | 1 | result.reset(new NullableT<false, result_is_nullable, | 283 | 1 | AggregateFunctionTemplate>( | 284 | 1 | result.release(), argument_types_, attr.is_window_function)); | 285 | 1 | } | 286 | 157 | }, |
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 | 276 | 9 | [&](auto result_is_nullable) { | 277 | 9 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 7 | } else { | 282 | 7 | result.reset(new NullableT<false, result_is_nullable, | 283 | 7 | AggregateFunctionTemplate>( | 284 | 7 | result.release(), argument_types_, attr.is_window_function)); | 285 | 7 | } | 286 | 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 | 276 | 93 | [&](auto result_is_nullable) { | 277 | 93 | if (attr.enable_aggregate_function_null_v2) { | 278 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 21 | AggregateFunctionTemplate>( | 280 | 21 | result.release(), argument_types_, attr.is_window_function)); | 281 | 72 | } else { | 282 | 72 | result.reset(new NullableT<false, result_is_nullable, | 283 | 72 | AggregateFunctionTemplate>( | 284 | 72 | result.release(), argument_types_, attr.is_window_function)); | 285 | 72 | } | 286 | 93 | }, |
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 | 276 | 24 | [&](auto result_is_nullable) { | 277 | 24 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 18 | } else { | 282 | 18 | result.reset(new NullableT<false, result_is_nullable, | 283 | 18 | AggregateFunctionTemplate>( | 284 | 18 | result.release(), argument_types_, attr.is_window_function)); | 285 | 18 | } | 286 | 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 | 276 | 98 | [&](auto result_is_nullable) { | 277 | 98 | if (attr.enable_aggregate_function_null_v2) { | 278 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 24 | AggregateFunctionTemplate>( | 280 | 24 | result.release(), argument_types_, attr.is_window_function)); | 281 | 74 | } else { | 282 | 74 | result.reset(new NullableT<false, result_is_nullable, | 283 | 74 | AggregateFunctionTemplate>( | 284 | 74 | result.release(), argument_types_, attr.is_window_function)); | 285 | 74 | } | 286 | 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 | 276 | 47 | [&](auto result_is_nullable) { | 277 | 47 | if (attr.enable_aggregate_function_null_v2) { | 278 | 47 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 47 | AggregateFunctionTemplate>( | 280 | 47 | result.release(), argument_types_, attr.is_window_function)); | 281 | 47 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 47 | }, |
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 | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 26 | }, |
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 | 276 | 459 | [&](auto result_is_nullable) { | 277 | 459 | if (attr.enable_aggregate_function_null_v2) { | 278 | 125 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 125 | AggregateFunctionTemplate>( | 280 | 125 | result.release(), argument_types_, attr.is_window_function)); | 281 | 334 | } else { | 282 | 334 | result.reset(new NullableT<false, result_is_nullable, | 283 | 334 | AggregateFunctionTemplate>( | 284 | 334 | result.release(), argument_types_, attr.is_window_function)); | 285 | 334 | } | 286 | 459 | }, |
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 | 276 | 358 | [&](auto result_is_nullable) { | 277 | 358 | if (attr.enable_aggregate_function_null_v2) { | 278 | 56 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 56 | AggregateFunctionTemplate>( | 280 | 56 | result.release(), argument_types_, attr.is_window_function)); | 281 | 302 | } else { | 282 | 302 | result.reset(new NullableT<false, result_is_nullable, | 283 | 302 | AggregateFunctionTemplate>( | 284 | 302 | result.release(), argument_types_, attr.is_window_function)); | 285 | 302 | } | 286 | 358 | }, |
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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 274 | [&](auto result_is_nullable) { | 277 | 274 | if (attr.enable_aggregate_function_null_v2) { | 278 | 205 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 205 | AggregateFunctionTemplate>( | 280 | 205 | result.release(), argument_types_, attr.is_window_function)); | 281 | 205 | } else { | 282 | 69 | result.reset(new NullableT<false, result_is_nullable, | 283 | 69 | AggregateFunctionTemplate>( | 284 | 69 | result.release(), argument_types_, attr.is_window_function)); | 285 | 69 | } | 286 | 274 | }, |
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 | 276 | 28 | [&](auto result_is_nullable) { | 277 | 28 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 3 | result.reset(new NullableT<false, result_is_nullable, | 283 | 3 | AggregateFunctionTemplate>( | 284 | 3 | result.release(), argument_types_, attr.is_window_function)); | 285 | 3 | } | 286 | 28 | }, |
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 | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 25 | }, |
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 | 276 | 445 | [&](auto result_is_nullable) { | 277 | 445 | if (attr.enable_aggregate_function_null_v2) { | 278 | 33 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 33 | AggregateFunctionTemplate>( | 280 | 33 | result.release(), argument_types_, attr.is_window_function)); | 281 | 412 | } else { | 282 | 412 | result.reset(new NullableT<false, result_is_nullable, | 283 | 412 | AggregateFunctionTemplate>( | 284 | 412 | result.release(), argument_types_, attr.is_window_function)); | 285 | 412 | } | 286 | 445 | }, |
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 | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 26 | }, |
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 | 276 | 27 | [&](auto result_is_nullable) { | 277 | 27 | if (attr.enable_aggregate_function_null_v2) { | 278 | 27 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 27 | AggregateFunctionTemplate>( | 280 | 27 | result.release(), argument_types_, attr.is_window_function)); | 281 | 27 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 27 | }, |
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 | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 25 | }, |
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 | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 25 | }, |
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 | 276 | 447 | [&](auto result_is_nullable) { | 277 | 447 | if (attr.enable_aggregate_function_null_v2) { | 278 | 33 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 33 | AggregateFunctionTemplate>( | 280 | 33 | result.release(), argument_types_, attr.is_window_function)); | 281 | 414 | } else { | 282 | 414 | result.reset(new NullableT<false, result_is_nullable, | 283 | 414 | AggregateFunctionTemplate>( | 284 | 414 | result.release(), argument_types_, attr.is_window_function)); | 285 | 414 | } | 286 | 447 | }, |
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 | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 26 | }, |
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 | 276 | 27 | [&](auto result_is_nullable) { | 277 | 27 | if (attr.enable_aggregate_function_null_v2) { | 278 | 27 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 27 | AggregateFunctionTemplate>( | 280 | 27 | result.release(), argument_types_, attr.is_window_function)); | 281 | 27 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 27 | }, |
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 | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 25 | }, |
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 | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 25 | }, |
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 | 276 | 444 | [&](auto result_is_nullable) { | 277 | 444 | if (attr.enable_aggregate_function_null_v2) { | 278 | 33 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 33 | AggregateFunctionTemplate>( | 280 | 33 | result.release(), argument_types_, attr.is_window_function)); | 281 | 411 | } else { | 282 | 411 | result.reset(new NullableT<false, result_is_nullable, | 283 | 411 | AggregateFunctionTemplate>( | 284 | 411 | result.release(), argument_types_, attr.is_window_function)); | 285 | 411 | } | 286 | 444 | }, |
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 | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 26 | }, |
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 | 276 | 27 | [&](auto result_is_nullable) { | 277 | 27 | if (attr.enable_aggregate_function_null_v2) { | 278 | 27 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 27 | AggregateFunctionTemplate>( | 280 | 27 | result.release(), argument_types_, attr.is_window_function)); | 281 | 27 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 27 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Line | Count | Source | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 5 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 276 | 12 | [&](auto result_is_nullable) { | 277 | 12 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 12 | } else { | 282 | 12 | result.reset(new NullableT<false, result_is_nullable, | 283 | 12 | AggregateFunctionTemplate>( | 284 | 12 | result.release(), argument_types_, attr.is_window_function)); | 285 | 12 | } | 286 | 12 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ Line | Count | Source | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 474 | [&](auto result_is_nullable) { | 277 | 474 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 474 | } else { | 282 | 474 | result.reset(new NullableT<false, result_is_nullable, | 283 | 474 | AggregateFunctionTemplate>( | 284 | 474 | result.release(), argument_types_, attr.is_window_function)); | 285 | 474 | } | 286 | 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 | 276 | 532 | [&](auto result_is_nullable) { | 277 | 532 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 532 | } else { | 282 | 532 | result.reset(new NullableT<false, result_is_nullable, | 283 | 532 | AggregateFunctionTemplate>( | 284 | 532 | result.release(), argument_types_, attr.is_window_function)); | 285 | 532 | } | 286 | 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 | 276 | 617 | [&](auto result_is_nullable) { | 277 | 617 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 617 | } else { | 282 | 617 | result.reset(new NullableT<false, result_is_nullable, | 283 | 617 | AggregateFunctionTemplate>( | 284 | 617 | result.release(), argument_types_, attr.is_window_function)); | 285 | 617 | } | 286 | 617 | }, |
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 | 276 | 598 | [&](auto result_is_nullable) { | 277 | 598 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 598 | } else { | 282 | 598 | result.reset(new NullableT<false, result_is_nullable, | 283 | 598 | AggregateFunctionTemplate>( | 284 | 598 | result.release(), argument_types_, attr.is_window_function)); | 285 | 598 | } | 286 | 598 | }, |
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_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 | 276 | 50 | [&](auto result_is_nullable) { | 277 | 50 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 50 | } else { | 282 | 50 | result.reset(new NullableT<false, result_is_nullable, | 283 | 50 | AggregateFunctionTemplate>( | 284 | 50 | result.release(), argument_types_, attr.is_window_function)); | 285 | 50 | } | 286 | 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 | 276 | 38 | [&](auto result_is_nullable) { | 277 | 38 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 38 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 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 | 276 | 46 | [&](auto result_is_nullable) { | 277 | 46 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 46 | } else { | 282 | 46 | result.reset(new NullableT<false, result_is_nullable, | 283 | 46 | AggregateFunctionTemplate>( | 284 | 46 | result.release(), argument_types_, attr.is_window_function)); | 285 | 46 | } | 286 | 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 | 276 | 38 | [&](auto result_is_nullable) { | 277 | 38 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 38 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 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 | 276 | 38 | [&](auto result_is_nullable) { | 277 | 38 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 38 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 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 | 276 | 42 | [&](auto result_is_nullable) { | 277 | 42 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 42 | } else { | 282 | 42 | result.reset(new NullableT<false, result_is_nullable, | 283 | 42 | AggregateFunctionTemplate>( | 284 | 42 | result.release(), argument_types_, attr.is_window_function)); | 285 | 42 | } | 286 | 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 | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 22 | result.reset(new NullableT<false, result_is_nullable, | 283 | 22 | AggregateFunctionTemplate>( | 284 | 22 | result.release(), argument_types_, attr.is_window_function)); | 285 | 22 | } | 286 | 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 | 276 | 47 | [&](auto result_is_nullable) { | 277 | 47 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 47 | } else { | 282 | 47 | result.reset(new NullableT<false, result_is_nullable, | 283 | 47 | AggregateFunctionTemplate>( | 284 | 47 | result.release(), argument_types_, attr.is_window_function)); | 285 | 47 | } | 286 | 47 | }, |
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 | 276 | 24 | [&](auto result_is_nullable) { | 277 | 24 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 24 | } else { | 282 | 24 | result.reset(new NullableT<false, result_is_nullable, | 283 | 24 | AggregateFunctionTemplate>( | 284 | 24 | result.release(), argument_types_, attr.is_window_function)); | 285 | 24 | } | 286 | 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 | 276 | 16 | [&](auto result_is_nullable) { | 277 | 16 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 16 | } else { | 282 | 16 | result.reset(new NullableT<false, result_is_nullable, | 283 | 16 | AggregateFunctionTemplate>( | 284 | 16 | result.release(), argument_types_, attr.is_window_function)); | 285 | 16 | } | 286 | 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 | 276 | 16 | [&](auto result_is_nullable) { | 277 | 16 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 16 | } else { | 282 | 16 | result.reset(new NullableT<false, result_is_nullable, | 283 | 16 | AggregateFunctionTemplate>( | 284 | 16 | result.release(), argument_types_, attr.is_window_function)); | 285 | 16 | } | 286 | 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 | 276 | 40 | [&](auto result_is_nullable) { | 277 | 40 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 40 | } else { | 282 | 40 | result.reset(new NullableT<false, result_is_nullable, | 283 | 40 | AggregateFunctionTemplate>( | 284 | 40 | result.release(), argument_types_, attr.is_window_function)); | 285 | 40 | } | 286 | 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 | 276 | 125 | [&](auto result_is_nullable) { | 277 | 125 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 125 | } else { | 282 | 125 | result.reset(new NullableT<false, result_is_nullable, | 283 | 125 | AggregateFunctionTemplate>( | 284 | 125 | result.release(), argument_types_, attr.is_window_function)); | 285 | 125 | } | 286 | 125 | }, |
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 | 276 | 1.01k | [&](auto result_is_nullable) { | 277 | 1.01k | if (attr.enable_aggregate_function_null_v2) { | 278 | 148 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 148 | AggregateFunctionTemplate>( | 280 | 148 | result.release(), argument_types_, attr.is_window_function)); | 281 | 862 | } else { | 282 | 862 | result.reset(new NullableT<false, result_is_nullable, | 283 | 862 | AggregateFunctionTemplate>( | 284 | 862 | result.release(), argument_types_, attr.is_window_function)); | 285 | 862 | } | 286 | 1.01k | }, |
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 | 276 | 1.06k | [&](auto result_is_nullable) { | 277 | 1.06k | if (attr.enable_aggregate_function_null_v2) { | 278 | 202 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 202 | AggregateFunctionTemplate>( | 280 | 202 | result.release(), argument_types_, attr.is_window_function)); | 281 | 866 | } else { | 282 | 866 | result.reset(new NullableT<false, result_is_nullable, | 283 | 866 | AggregateFunctionTemplate>( | 284 | 866 | result.release(), argument_types_, attr.is_window_function)); | 285 | 866 | } | 286 | 1.06k | }, |
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 | 276 | 1.02k | [&](auto result_is_nullable) { | 277 | 1.02k | if (attr.enable_aggregate_function_null_v2) { | 278 | 160 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 160 | AggregateFunctionTemplate>( | 280 | 160 | result.release(), argument_types_, attr.is_window_function)); | 281 | 860 | } else { | 282 | 860 | result.reset(new NullableT<false, result_is_nullable, | 283 | 860 | AggregateFunctionTemplate>( | 284 | 860 | result.release(), argument_types_, attr.is_window_function)); | 285 | 860 | } | 286 | 1.02k | }, |
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 | 276 | 555 | [&](auto result_is_nullable) { | 277 | 555 | if (attr.enable_aggregate_function_null_v2) { | 278 | 144 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 144 | AggregateFunctionTemplate>( | 280 | 144 | result.release(), argument_types_, attr.is_window_function)); | 281 | 411 | } else { | 282 | 411 | result.reset(new NullableT<false, result_is_nullable, | 283 | 411 | AggregateFunctionTemplate>( | 284 | 411 | result.release(), argument_types_, attr.is_window_function)); | 285 | 411 | } | 286 | 555 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSO_ Line | Count | Source | 276 | 82 | [&](auto result_is_nullable) { | 277 | 82 | if (attr.enable_aggregate_function_null_v2) { | 278 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4 | AggregateFunctionTemplate>( | 280 | 4 | result.release(), argument_types_, attr.is_window_function)); | 281 | 78 | } else { | 282 | 78 | result.reset(new NullableT<false, result_is_nullable, | 283 | 78 | AggregateFunctionTemplate>( | 284 | 78 | result.release(), argument_types_, attr.is_window_function)); | 285 | 78 | } | 286 | 82 | }, |
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 | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 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 | 276 | 21 | [&](auto result_is_nullable) { | 277 | 21 | if (attr.enable_aggregate_function_null_v2) { | 278 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 21 | AggregateFunctionTemplate>( | 280 | 21 | result.release(), argument_types_, attr.is_window_function)); | 281 | 21 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 21 | }, |
|
287 | 76.6k | make_bool_variant(result_is_nullable)); |
288 | 76.6k | } |
289 | 129k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
290 | 129k | return AggregateFunctionPtr(result.release()); |
291 | 129k | } _ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE28ELS3_28ENS_24AggregateFunctionSumDataILS3_28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 894 | TArgs&&... args) { | 268 | 894 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 894 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 894 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 894 | if (have_nullable(argument_types_)) { | 275 | 893 | std::visit( | 276 | 893 | [&](auto result_is_nullable) { | 277 | 893 | if (attr.enable_aggregate_function_null_v2) { | 278 | 893 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 893 | AggregateFunctionTemplate>( | 280 | 893 | result.release(), argument_types_, attr.is_window_function)); | 281 | 893 | } else { | 282 | 893 | result.reset(new NullableT<false, result_is_nullable, | 283 | 893 | AggregateFunctionTemplate>( | 284 | 893 | result.release(), argument_types_, attr.is_window_function)); | 285 | 893 | } | 286 | 893 | }, | 287 | 893 | make_bool_variant(result_is_nullable)); | 288 | 893 | } | 289 | 894 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 894 | return AggregateFunctionPtr(result.release()); | 291 | 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 | 267 | 130 | TArgs&&... args) { | 268 | 130 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 130 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 130 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 130 | if (have_nullable(argument_types_)) { | 275 | 118 | std::visit( | 276 | 118 | [&](auto result_is_nullable) { | 277 | 118 | if (attr.enable_aggregate_function_null_v2) { | 278 | 118 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 118 | AggregateFunctionTemplate>( | 280 | 118 | result.release(), argument_types_, attr.is_window_function)); | 281 | 118 | } else { | 282 | 118 | result.reset(new NullableT<false, result_is_nullable, | 283 | 118 | AggregateFunctionTemplate>( | 284 | 118 | result.release(), argument_types_, attr.is_window_function)); | 285 | 118 | } | 286 | 118 | }, | 287 | 118 | make_bool_variant(result_is_nullable)); | 288 | 118 | } | 289 | 130 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 130 | return AggregateFunctionPtr(result.release()); | 291 | 130 | } |
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 | 267 | 30 | TArgs&&... args) { | 268 | 30 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 30 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 30 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 30 | if (have_nullable(argument_types_)) { | 275 | 26 | std::visit( | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 26 | result.reset(new NullableT<false, result_is_nullable, | 283 | 26 | AggregateFunctionTemplate>( | 284 | 26 | result.release(), argument_types_, attr.is_window_function)); | 285 | 26 | } | 286 | 26 | }, | 287 | 26 | make_bool_variant(result_is_nullable)); | 288 | 26 | } | 289 | 30 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 30 | return AggregateFunctionPtr(result.release()); | 291 | 30 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.35k | TArgs&&... args) { | 268 | 1.35k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.35k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.35k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.35k | if (have_nullable(argument_types_)) { | 275 | 810 | std::visit( | 276 | 810 | [&](auto result_is_nullable) { | 277 | 810 | if (attr.enable_aggregate_function_null_v2) { | 278 | 810 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 810 | AggregateFunctionTemplate>( | 280 | 810 | result.release(), argument_types_, attr.is_window_function)); | 281 | 810 | } else { | 282 | 810 | result.reset(new NullableT<false, result_is_nullable, | 283 | 810 | AggregateFunctionTemplate>( | 284 | 810 | result.release(), argument_types_, attr.is_window_function)); | 285 | 810 | } | 286 | 810 | }, | 287 | 810 | make_bool_variant(result_is_nullable)); | 288 | 810 | } | 289 | 1.35k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.35k | return AggregateFunctionPtr(result.release()); | 291 | 1.35k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 18 | TArgs&&... args) { | 268 | 18 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 18 | if (have_nullable(argument_types_)) { | 275 | 6 | std::visit( | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 6 | result.reset(new NullableT<false, result_is_nullable, | 283 | 6 | AggregateFunctionTemplate>( | 284 | 6 | result.release(), argument_types_, attr.is_window_function)); | 285 | 6 | } | 286 | 6 | }, | 287 | 6 | make_bool_variant(result_is_nullable)); | 288 | 6 | } | 289 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 18 | return AggregateFunctionPtr(result.release()); | 291 | 18 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionSumDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.21k | TArgs&&... args) { | 268 | 2.21k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2.21k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.21k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.21k | if (have_nullable(argument_types_)) { | 275 | 577 | std::visit( | 276 | 577 | [&](auto result_is_nullable) { | 277 | 577 | if (attr.enable_aggregate_function_null_v2) { | 278 | 577 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 577 | AggregateFunctionTemplate>( | 280 | 577 | result.release(), argument_types_, attr.is_window_function)); | 281 | 577 | } else { | 282 | 577 | result.reset(new NullableT<false, result_is_nullable, | 283 | 577 | AggregateFunctionTemplate>( | 284 | 577 | result.release(), argument_types_, attr.is_window_function)); | 285 | 577 | } | 286 | 577 | }, | 287 | 577 | make_bool_variant(result_is_nullable)); | 288 | 577 | } | 289 | 2.21k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.21k | return AggregateFunctionPtr(result.release()); | 291 | 2.21k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 9 | TArgs&&... args) { | 268 | 9 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 9 | if (have_nullable(argument_types_)) { | 275 | 9 | std::visit( | 276 | 9 | [&](auto result_is_nullable) { | 277 | 9 | if (attr.enable_aggregate_function_null_v2) { | 278 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 9 | AggregateFunctionTemplate>( | 280 | 9 | result.release(), argument_types_, attr.is_window_function)); | 281 | 9 | } else { | 282 | 9 | result.reset(new NullableT<false, result_is_nullable, | 283 | 9 | AggregateFunctionTemplate>( | 284 | 9 | result.release(), argument_types_, attr.is_window_function)); | 285 | 9 | } | 286 | 9 | }, | 287 | 9 | make_bool_variant(result_is_nullable)); | 288 | 9 | } | 289 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 9 | return AggregateFunctionPtr(result.release()); | 291 | 9 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionSumDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 157 | TArgs&&... args) { | 268 | 157 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 157 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 157 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 157 | if (have_nullable(argument_types_)) { | 275 | 142 | std::visit( | 276 | 142 | [&](auto result_is_nullable) { | 277 | 142 | if (attr.enable_aggregate_function_null_v2) { | 278 | 142 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 142 | AggregateFunctionTemplate>( | 280 | 142 | result.release(), argument_types_, attr.is_window_function)); | 281 | 142 | } else { | 282 | 142 | result.reset(new NullableT<false, result_is_nullable, | 283 | 142 | AggregateFunctionTemplate>( | 284 | 142 | result.release(), argument_types_, attr.is_window_function)); | 285 | 142 | } | 286 | 142 | }, | 287 | 142 | make_bool_variant(result_is_nullable)); | 288 | 142 | } | 289 | 157 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 157 | return AggregateFunctionPtr(result.release()); | 291 | 157 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 3.83k | TArgs&&... args) { | 268 | 3.83k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 3.83k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 3.83k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 3.83k | if (have_nullable(argument_types_)) { | 275 | 153 | std::visit( | 276 | 153 | [&](auto result_is_nullable) { | 277 | 153 | if (attr.enable_aggregate_function_null_v2) { | 278 | 153 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 153 | AggregateFunctionTemplate>( | 280 | 153 | result.release(), argument_types_, attr.is_window_function)); | 281 | 153 | } else { | 282 | 153 | result.reset(new NullableT<false, result_is_nullable, | 283 | 153 | AggregateFunctionTemplate>( | 284 | 153 | result.release(), argument_types_, attr.is_window_function)); | 285 | 153 | } | 286 | 153 | }, | 287 | 153 | make_bool_variant(result_is_nullable)); | 288 | 153 | } | 289 | 3.83k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 3.83k | return AggregateFunctionPtr(result.release()); | 291 | 3.83k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 86 | TArgs&&... args) { | 268 | 86 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 86 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 86 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 86 | if (have_nullable(argument_types_)) { | 275 | 70 | std::visit( | 276 | 70 | [&](auto result_is_nullable) { | 277 | 70 | if (attr.enable_aggregate_function_null_v2) { | 278 | 70 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 70 | AggregateFunctionTemplate>( | 280 | 70 | result.release(), argument_types_, attr.is_window_function)); | 281 | 70 | } else { | 282 | 70 | result.reset(new NullableT<false, result_is_nullable, | 283 | 70 | AggregateFunctionTemplate>( | 284 | 70 | result.release(), argument_types_, attr.is_window_function)); | 285 | 70 | } | 286 | 70 | }, | 287 | 70 | make_bool_variant(result_is_nullable)); | 288 | 70 | } | 289 | 86 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 86 | return AggregateFunctionPtr(result.release()); | 291 | 86 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 9.04k | TArgs&&... args) { | 268 | 9.04k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 9.04k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 9.04k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 9.04k | if (have_nullable(argument_types_)) { | 275 | 5.63k | std::visit( | 276 | 5.63k | [&](auto result_is_nullable) { | 277 | 5.63k | if (attr.enable_aggregate_function_null_v2) { | 278 | 5.63k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5.63k | AggregateFunctionTemplate>( | 280 | 5.63k | result.release(), argument_types_, attr.is_window_function)); | 281 | 5.63k | } else { | 282 | 5.63k | result.reset(new NullableT<false, result_is_nullable, | 283 | 5.63k | AggregateFunctionTemplate>( | 284 | 5.63k | result.release(), argument_types_, attr.is_window_function)); | 285 | 5.63k | } | 286 | 5.63k | }, | 287 | 5.63k | make_bool_variant(result_is_nullable)); | 288 | 5.63k | } | 289 | 9.04k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 9.04k | return AggregateFunctionPtr(result.release()); | 291 | 9.04k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 6.53k | TArgs&&... args) { | 268 | 6.53k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 6.53k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 6.53k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 6.53k | if (have_nullable(argument_types_)) { | 275 | 3.37k | std::visit( | 276 | 3.37k | [&](auto result_is_nullable) { | 277 | 3.37k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.37k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.37k | AggregateFunctionTemplate>( | 280 | 3.37k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.37k | } else { | 282 | 3.37k | result.reset(new NullableT<false, result_is_nullable, | 283 | 3.37k | AggregateFunctionTemplate>( | 284 | 3.37k | result.release(), argument_types_, attr.is_window_function)); | 285 | 3.37k | } | 286 | 3.37k | }, | 287 | 3.37k | make_bool_variant(result_is_nullable)); | 288 | 3.37k | } | 289 | 6.53k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 6.53k | return AggregateFunctionPtr(result.release()); | 291 | 6.53k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.21k | TArgs&&... args) { | 268 | 1.21k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.21k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.21k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.21k | if (have_nullable(argument_types_)) { | 275 | 721 | std::visit( | 276 | 721 | [&](auto result_is_nullable) { | 277 | 721 | if (attr.enable_aggregate_function_null_v2) { | 278 | 721 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 721 | AggregateFunctionTemplate>( | 280 | 721 | result.release(), argument_types_, attr.is_window_function)); | 281 | 721 | } else { | 282 | 721 | result.reset(new NullableT<false, result_is_nullable, | 283 | 721 | AggregateFunctionTemplate>( | 284 | 721 | result.release(), argument_types_, attr.is_window_function)); | 285 | 721 | } | 286 | 721 | }, | 287 | 721 | make_bool_variant(result_is_nullable)); | 288 | 721 | } | 289 | 1.21k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.21k | return AggregateFunctionPtr(result.release()); | 291 | 1.21k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 70 | TArgs&&... args) { | 268 | 70 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 70 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 70 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 70 | if (have_nullable(argument_types_)) { | 275 | 70 | std::visit( | 276 | 70 | [&](auto result_is_nullable) { | 277 | 70 | if (attr.enable_aggregate_function_null_v2) { | 278 | 70 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 70 | AggregateFunctionTemplate>( | 280 | 70 | result.release(), argument_types_, attr.is_window_function)); | 281 | 70 | } else { | 282 | 70 | result.reset(new NullableT<false, result_is_nullable, | 283 | 70 | AggregateFunctionTemplate>( | 284 | 70 | result.release(), argument_types_, attr.is_window_function)); | 285 | 70 | } | 286 | 70 | }, | 287 | 70 | make_bool_variant(result_is_nullable)); | 288 | 70 | } | 289 | 70 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 70 | return AggregateFunctionPtr(result.release()); | 291 | 70 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionSumDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.31k | TArgs&&... args) { | 268 | 2.31k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2.31k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.31k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.31k | if (have_nullable(argument_types_)) { | 275 | 1.49k | std::visit( | 276 | 1.49k | [&](auto result_is_nullable) { | 277 | 1.49k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.49k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.49k | AggregateFunctionTemplate>( | 280 | 1.49k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.49k | } else { | 282 | 1.49k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.49k | AggregateFunctionTemplate>( | 284 | 1.49k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.49k | } | 286 | 1.49k | }, | 287 | 1.49k | make_bool_variant(result_is_nullable)); | 288 | 1.49k | } | 289 | 2.31k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.31k | return AggregateFunctionPtr(result.release()); | 291 | 2.31k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE20ELS3_20ENS_24AggregateFunctionSumDataILS3_20EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1 | TArgs&&... args) { | 268 | 1 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1 | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1 | return AggregateFunctionPtr(result.release()); | 291 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 7.23k | TArgs&&... args) { | 268 | 7.23k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 7.23k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 7.23k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 7.23k | if (have_nullable(argument_types_)) { | 275 | 4.73k | std::visit( | 276 | 4.73k | [&](auto result_is_nullable) { | 277 | 4.73k | if (attr.enable_aggregate_function_null_v2) { | 278 | 4.73k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4.73k | AggregateFunctionTemplate>( | 280 | 4.73k | result.release(), argument_types_, attr.is_window_function)); | 281 | 4.73k | } else { | 282 | 4.73k | result.reset(new NullableT<false, result_is_nullable, | 283 | 4.73k | AggregateFunctionTemplate>( | 284 | 4.73k | result.release(), argument_types_, attr.is_window_function)); | 285 | 4.73k | } | 286 | 4.73k | }, | 287 | 4.73k | make_bool_variant(result_is_nullable)); | 288 | 4.73k | } | 289 | 7.23k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 7.23k | return AggregateFunctionPtr(result.release()); | 291 | 7.23k | } |
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 | 267 | 1 | TArgs&&... args) { | 268 | 1 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1 | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1 | return AggregateFunctionPtr(result.release()); | 291 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 5.12k | TArgs&&... args) { | 268 | 5.12k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 5.12k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.12k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.12k | if (have_nullable(argument_types_)) { | 275 | 1.80k | std::visit( | 276 | 1.80k | [&](auto result_is_nullable) { | 277 | 1.80k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.80k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.80k | AggregateFunctionTemplate>( | 280 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.80k | } else { | 282 | 1.80k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.80k | AggregateFunctionTemplate>( | 284 | 1.80k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.80k | } | 286 | 1.80k | }, | 287 | 1.80k | make_bool_variant(result_is_nullable)); | 288 | 1.80k | } | 289 | 5.12k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.12k | return AggregateFunctionPtr(result.release()); | 291 | 5.12k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.12k | TArgs&&... args) { | 268 | 1.12k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.12k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.12k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.12k | if (have_nullable(argument_types_)) { | 275 | 779 | std::visit( | 276 | 779 | [&](auto result_is_nullable) { | 277 | 779 | if (attr.enable_aggregate_function_null_v2) { | 278 | 779 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 779 | AggregateFunctionTemplate>( | 280 | 779 | result.release(), argument_types_, attr.is_window_function)); | 281 | 779 | } else { | 282 | 779 | result.reset(new NullableT<false, result_is_nullable, | 283 | 779 | AggregateFunctionTemplate>( | 284 | 779 | result.release(), argument_types_, attr.is_window_function)); | 285 | 779 | } | 286 | 779 | }, | 287 | 779 | make_bool_variant(result_is_nullable)); | 288 | 779 | } | 289 | 1.12k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.12k | return AggregateFunctionPtr(result.release()); | 291 | 1.12k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.52k | TArgs&&... args) { | 268 | 1.52k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.52k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.52k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.52k | if (have_nullable(argument_types_)) { | 275 | 1.52k | std::visit( | 276 | 1.52k | [&](auto result_is_nullable) { | 277 | 1.52k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.52k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.52k | AggregateFunctionTemplate>( | 280 | 1.52k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.52k | } else { | 282 | 1.52k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.52k | AggregateFunctionTemplate>( | 284 | 1.52k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.52k | } | 286 | 1.52k | }, | 287 | 1.52k | make_bool_variant(result_is_nullable)); | 288 | 1.52k | } | 289 | 1.52k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.52k | return AggregateFunctionPtr(result.release()); | 291 | 1.52k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 22 | TArgs&&... args) { | 268 | 22 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 22 | if (have_nullable(argument_types_)) { | 275 | 22 | std::visit( | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 22 | result.reset(new NullableT<false, result_is_nullable, | 283 | 22 | AggregateFunctionTemplate>( | 284 | 22 | result.release(), argument_types_, attr.is_window_function)); | 285 | 22 | } | 286 | 22 | }, | 287 | 22 | make_bool_variant(result_is_nullable)); | 288 | 22 | } | 289 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 22 | return AggregateFunctionPtr(result.release()); | 291 | 22 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 22 | TArgs&&... args) { | 268 | 22 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 22 | if (have_nullable(argument_types_)) { | 275 | 22 | std::visit( | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 22 | result.reset(new NullableT<false, result_is_nullable, | 283 | 22 | AggregateFunctionTemplate>( | 284 | 22 | result.release(), argument_types_, attr.is_window_function)); | 285 | 22 | } | 286 | 22 | }, | 287 | 22 | make_bool_variant(result_is_nullable)); | 288 | 22 | } | 289 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 22 | return AggregateFunctionPtr(result.release()); | 291 | 22 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 226 | TArgs&&... args) { | 268 | 226 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 226 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 226 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 226 | if (have_nullable(argument_types_)) { | 275 | 223 | std::visit( | 276 | 223 | [&](auto result_is_nullable) { | 277 | 223 | if (attr.enable_aggregate_function_null_v2) { | 278 | 223 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 223 | AggregateFunctionTemplate>( | 280 | 223 | result.release(), argument_types_, attr.is_window_function)); | 281 | 223 | } else { | 282 | 223 | result.reset(new NullableT<false, result_is_nullable, | 283 | 223 | AggregateFunctionTemplate>( | 284 | 223 | result.release(), argument_types_, attr.is_window_function)); | 285 | 223 | } | 286 | 223 | }, | 287 | 223 | make_bool_variant(result_is_nullable)); | 288 | 223 | } | 289 | 226 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 226 | return AggregateFunctionPtr(result.release()); | 291 | 226 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 921 | TArgs&&... args) { | 268 | 921 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 921 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 921 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 921 | if (have_nullable(argument_types_)) { | 275 | 631 | std::visit( | 276 | 631 | [&](auto result_is_nullable) { | 277 | 631 | if (attr.enable_aggregate_function_null_v2) { | 278 | 631 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 631 | AggregateFunctionTemplate>( | 280 | 631 | result.release(), argument_types_, attr.is_window_function)); | 281 | 631 | } else { | 282 | 631 | result.reset(new NullableT<false, result_is_nullable, | 283 | 631 | AggregateFunctionTemplate>( | 284 | 631 | result.release(), argument_types_, attr.is_window_function)); | 285 | 631 | } | 286 | 631 | }, | 287 | 631 | make_bool_variant(result_is_nullable)); | 288 | 631 | } | 289 | 921 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 921 | return AggregateFunctionPtr(result.release()); | 291 | 921 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 907 | TArgs&&... args) { | 268 | 907 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 907 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 907 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 907 | if (have_nullable(argument_types_)) { | 275 | 652 | std::visit( | 276 | 652 | [&](auto result_is_nullable) { | 277 | 652 | if (attr.enable_aggregate_function_null_v2) { | 278 | 652 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 652 | AggregateFunctionTemplate>( | 280 | 652 | result.release(), argument_types_, attr.is_window_function)); | 281 | 652 | } else { | 282 | 652 | result.reset(new NullableT<false, result_is_nullable, | 283 | 652 | AggregateFunctionTemplate>( | 284 | 652 | result.release(), argument_types_, attr.is_window_function)); | 285 | 652 | } | 286 | 652 | }, | 287 | 652 | make_bool_variant(result_is_nullable)); | 288 | 652 | } | 289 | 907 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 907 | return AggregateFunctionPtr(result.release()); | 291 | 907 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 15.4k | TArgs&&... args) { | 268 | 15.4k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 15.4k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 15.4k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 15.4k | if (have_nullable(argument_types_)) { | 275 | 10.3k | std::visit( | 276 | 10.3k | [&](auto result_is_nullable) { | 277 | 10.3k | if (attr.enable_aggregate_function_null_v2) { | 278 | 10.3k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10.3k | AggregateFunctionTemplate>( | 280 | 10.3k | result.release(), argument_types_, attr.is_window_function)); | 281 | 10.3k | } else { | 282 | 10.3k | result.reset(new NullableT<false, result_is_nullable, | 283 | 10.3k | AggregateFunctionTemplate>( | 284 | 10.3k | result.release(), argument_types_, attr.is_window_function)); | 285 | 10.3k | } | 286 | 10.3k | }, | 287 | 10.3k | make_bool_variant(result_is_nullable)); | 288 | 10.3k | } | 289 | 15.4k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 15.4k | return AggregateFunctionPtr(result.release()); | 291 | 15.4k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 5.50k | TArgs&&... args) { | 268 | 5.50k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 5.50k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.50k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.50k | if (have_nullable(argument_types_)) { | 275 | 3.46k | std::visit( | 276 | 3.46k | [&](auto result_is_nullable) { | 277 | 3.46k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.46k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.46k | AggregateFunctionTemplate>( | 280 | 3.46k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.46k | } else { | 282 | 3.46k | result.reset(new NullableT<false, result_is_nullable, | 283 | 3.46k | AggregateFunctionTemplate>( | 284 | 3.46k | result.release(), argument_types_, attr.is_window_function)); | 285 | 3.46k | } | 286 | 3.46k | }, | 287 | 3.46k | make_bool_variant(result_is_nullable)); | 288 | 3.46k | } | 289 | 5.50k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.50k | return AggregateFunctionPtr(result.release()); | 291 | 5.50k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 728 | TArgs&&... args) { | 268 | 728 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 728 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 728 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 728 | if (have_nullable(argument_types_)) { | 275 | 412 | std::visit( | 276 | 412 | [&](auto result_is_nullable) { | 277 | 412 | if (attr.enable_aggregate_function_null_v2) { | 278 | 412 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 412 | AggregateFunctionTemplate>( | 280 | 412 | result.release(), argument_types_, attr.is_window_function)); | 281 | 412 | } else { | 282 | 412 | result.reset(new NullableT<false, result_is_nullable, | 283 | 412 | AggregateFunctionTemplate>( | 284 | 412 | result.release(), argument_types_, attr.is_window_function)); | 285 | 412 | } | 286 | 412 | }, | 287 | 412 | make_bool_variant(result_is_nullable)); | 288 | 412 | } | 289 | 728 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 728 | return AggregateFunctionPtr(result.release()); | 291 | 728 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 615 | TArgs&&... args) { | 268 | 615 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 615 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 615 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 615 | if (have_nullable(argument_types_)) { | 275 | 477 | std::visit( | 276 | 477 | [&](auto result_is_nullable) { | 277 | 477 | if (attr.enable_aggregate_function_null_v2) { | 278 | 477 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 477 | AggregateFunctionTemplate>( | 280 | 477 | result.release(), argument_types_, attr.is_window_function)); | 281 | 477 | } else { | 282 | 477 | result.reset(new NullableT<false, result_is_nullable, | 283 | 477 | AggregateFunctionTemplate>( | 284 | 477 | result.release(), argument_types_, attr.is_window_function)); | 285 | 477 | } | 286 | 477 | }, | 287 | 477 | make_bool_variant(result_is_nullable)); | 288 | 477 | } | 289 | 615 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 615 | return AggregateFunctionPtr(result.release()); | 291 | 615 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.28k | TArgs&&... args) { | 268 | 1.28k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.28k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.28k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.28k | if (have_nullable(argument_types_)) { | 275 | 919 | std::visit( | 276 | 919 | [&](auto result_is_nullable) { | 277 | 919 | if (attr.enable_aggregate_function_null_v2) { | 278 | 919 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 919 | AggregateFunctionTemplate>( | 280 | 919 | result.release(), argument_types_, attr.is_window_function)); | 281 | 919 | } else { | 282 | 919 | result.reset(new NullableT<false, result_is_nullable, | 283 | 919 | AggregateFunctionTemplate>( | 284 | 919 | result.release(), argument_types_, attr.is_window_function)); | 285 | 919 | } | 286 | 919 | }, | 287 | 919 | make_bool_variant(result_is_nullable)); | 288 | 919 | } | 289 | 1.28k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.28k | return AggregateFunctionPtr(result.release()); | 291 | 1.28k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 182 | TArgs&&... args) { | 268 | 182 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 182 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 182 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 182 | if (have_nullable(argument_types_)) { | 275 | 182 | std::visit( | 276 | 182 | [&](auto result_is_nullable) { | 277 | 182 | if (attr.enable_aggregate_function_null_v2) { | 278 | 182 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 182 | AggregateFunctionTemplate>( | 280 | 182 | result.release(), argument_types_, attr.is_window_function)); | 281 | 182 | } else { | 282 | 182 | result.reset(new NullableT<false, result_is_nullable, | 283 | 182 | AggregateFunctionTemplate>( | 284 | 182 | result.release(), argument_types_, attr.is_window_function)); | 285 | 182 | } | 286 | 182 | }, | 287 | 182 | make_bool_variant(result_is_nullable)); | 288 | 182 | } | 289 | 182 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 182 | return AggregateFunctionPtr(result.release()); | 291 | 182 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.99k | TArgs&&... args) { | 268 | 2.99k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2.99k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.99k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.99k | if (have_nullable(argument_types_)) { | 275 | 1.95k | std::visit( | 276 | 1.95k | [&](auto result_is_nullable) { | 277 | 1.95k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.95k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.95k | AggregateFunctionTemplate>( | 280 | 1.95k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.95k | } else { | 282 | 1.95k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.95k | AggregateFunctionTemplate>( | 284 | 1.95k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.95k | } | 286 | 1.95k | }, | 287 | 1.95k | make_bool_variant(result_is_nullable)); | 288 | 1.95k | } | 289 | 2.99k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.99k | return AggregateFunctionPtr(result.release()); | 291 | 2.99k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1 | TArgs&&... args) { | 268 | 1 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1 | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1 | return AggregateFunctionPtr(result.release()); | 291 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 829 | TArgs&&... args) { | 268 | 829 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 829 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 829 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 829 | if (have_nullable(argument_types_)) { | 275 | 669 | std::visit( | 276 | 669 | [&](auto result_is_nullable) { | 277 | 669 | if (attr.enable_aggregate_function_null_v2) { | 278 | 669 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 669 | AggregateFunctionTemplate>( | 280 | 669 | result.release(), argument_types_, attr.is_window_function)); | 281 | 669 | } else { | 282 | 669 | result.reset(new NullableT<false, result_is_nullable, | 283 | 669 | AggregateFunctionTemplate>( | 284 | 669 | result.release(), argument_types_, attr.is_window_function)); | 285 | 669 | } | 286 | 669 | }, | 287 | 669 | make_bool_variant(result_is_nullable)); | 288 | 669 | } | 289 | 829 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 829 | return AggregateFunctionPtr(result.release()); | 291 | 829 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 51 | TArgs&&... args) { | 268 | 51 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 51 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 51 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 51 | if (have_nullable(argument_types_)) { | 275 | 51 | std::visit( | 276 | 51 | [&](auto result_is_nullable) { | 277 | 51 | if (attr.enable_aggregate_function_null_v2) { | 278 | 51 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 51 | AggregateFunctionTemplate>( | 280 | 51 | result.release(), argument_types_, attr.is_window_function)); | 281 | 51 | } else { | 282 | 51 | result.reset(new NullableT<false, result_is_nullable, | 283 | 51 | AggregateFunctionTemplate>( | 284 | 51 | result.release(), argument_types_, attr.is_window_function)); | 285 | 51 | } | 286 | 51 | }, | 287 | 51 | make_bool_variant(result_is_nullable)); | 288 | 51 | } | 289 | 51 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 51 | return AggregateFunctionPtr(result.release()); | 291 | 51 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 4 | TArgs&&... args) { | 268 | 4 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4 | if (have_nullable(argument_types_)) { | 275 | 4 | std::visit( | 276 | 4 | [&](auto result_is_nullable) { | 277 | 4 | if (attr.enable_aggregate_function_null_v2) { | 278 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4 | AggregateFunctionTemplate>( | 280 | 4 | result.release(), argument_types_, attr.is_window_function)); | 281 | 4 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 4 | }, | 287 | 4 | make_bool_variant(result_is_nullable)); | 288 | 4 | } | 289 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4 | return AggregateFunctionPtr(result.release()); | 291 | 4 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 5.92k | TArgs&&... args) { | 268 | 5.92k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 5.92k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.92k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.92k | if (have_nullable(argument_types_)) { | 275 | 3.61k | std::visit( | 276 | 3.61k | [&](auto result_is_nullable) { | 277 | 3.61k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.61k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.61k | AggregateFunctionTemplate>( | 280 | 3.61k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.61k | } else { | 282 | 3.61k | result.reset(new NullableT<false, result_is_nullable, | 283 | 3.61k | AggregateFunctionTemplate>( | 284 | 3.61k | result.release(), argument_types_, attr.is_window_function)); | 285 | 3.61k | } | 286 | 3.61k | }, | 287 | 3.61k | make_bool_variant(result_is_nullable)); | 288 | 3.61k | } | 289 | 5.92k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.92k | return AggregateFunctionPtr(result.release()); | 291 | 5.92k | } |
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 | 267 | 1 | TArgs&&... args) { | 268 | 1 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1 | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1 | return AggregateFunctionPtr(result.release()); | 291 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE25EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 4.85k | TArgs&&... args) { | 268 | 4.85k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 4.85k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4.85k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4.85k | if (have_nullable(argument_types_)) { | 275 | 1.57k | std::visit( | 276 | 1.57k | [&](auto result_is_nullable) { | 277 | 1.57k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.57k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.57k | AggregateFunctionTemplate>( | 280 | 1.57k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.57k | } else { | 282 | 1.57k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.57k | AggregateFunctionTemplate>( | 284 | 1.57k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.57k | } | 286 | 1.57k | }, | 287 | 1.57k | make_bool_variant(result_is_nullable)); | 288 | 1.57k | } | 289 | 4.85k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4.85k | return AggregateFunctionPtr(result.release()); | 291 | 4.85k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 813 | TArgs&&... args) { | 268 | 813 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 813 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 813 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 813 | if (have_nullable(argument_types_)) { | 275 | 543 | std::visit( | 276 | 543 | [&](auto result_is_nullable) { | 277 | 543 | if (attr.enable_aggregate_function_null_v2) { | 278 | 543 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 543 | AggregateFunctionTemplate>( | 280 | 543 | result.release(), argument_types_, attr.is_window_function)); | 281 | 543 | } else { | 282 | 543 | result.reset(new NullableT<false, result_is_nullable, | 283 | 543 | AggregateFunctionTemplate>( | 284 | 543 | result.release(), argument_types_, attr.is_window_function)); | 285 | 543 | } | 286 | 543 | }, | 287 | 543 | make_bool_variant(result_is_nullable)); | 288 | 543 | } | 289 | 813 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 813 | return AggregateFunctionPtr(result.release()); | 291 | 813 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.52k | TArgs&&... args) { | 268 | 1.52k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.52k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.52k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.52k | if (have_nullable(argument_types_)) { | 275 | 1.52k | std::visit( | 276 | 1.52k | [&](auto result_is_nullable) { | 277 | 1.52k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.52k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.52k | AggregateFunctionTemplate>( | 280 | 1.52k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.52k | } else { | 282 | 1.52k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.52k | AggregateFunctionTemplate>( | 284 | 1.52k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.52k | } | 286 | 1.52k | }, | 287 | 1.52k | make_bool_variant(result_is_nullable)); | 288 | 1.52k | } | 289 | 1.52k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.52k | return AggregateFunctionPtr(result.release()); | 291 | 1.52k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE27EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 18 | TArgs&&... args) { | 268 | 18 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 18 | if (have_nullable(argument_types_)) { | 275 | 18 | std::visit( | 276 | 18 | [&](auto result_is_nullable) { | 277 | 18 | if (attr.enable_aggregate_function_null_v2) { | 278 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 18 | AggregateFunctionTemplate>( | 280 | 18 | result.release(), argument_types_, attr.is_window_function)); | 281 | 18 | } else { | 282 | 18 | result.reset(new NullableT<false, result_is_nullable, | 283 | 18 | AggregateFunctionTemplate>( | 284 | 18 | result.release(), argument_types_, attr.is_window_function)); | 285 | 18 | } | 286 | 18 | }, | 287 | 18 | make_bool_variant(result_is_nullable)); | 288 | 18 | } | 289 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 18 | return AggregateFunctionPtr(result.release()); | 291 | 18 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 18 | TArgs&&... args) { | 268 | 18 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 18 | if (have_nullable(argument_types_)) { | 275 | 18 | std::visit( | 276 | 18 | [&](auto result_is_nullable) { | 277 | 18 | if (attr.enable_aggregate_function_null_v2) { | 278 | 18 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 18 | AggregateFunctionTemplate>( | 280 | 18 | result.release(), argument_types_, attr.is_window_function)); | 281 | 18 | } else { | 282 | 18 | result.reset(new NullableT<false, result_is_nullable, | 283 | 18 | AggregateFunctionTemplate>( | 284 | 18 | result.release(), argument_types_, attr.is_window_function)); | 285 | 18 | } | 286 | 18 | }, | 287 | 18 | make_bool_variant(result_is_nullable)); | 288 | 18 | } | 289 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 18 | return AggregateFunctionPtr(result.release()); | 291 | 18 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 147 | TArgs&&... args) { | 268 | 147 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 147 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 147 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 147 | if (have_nullable(argument_types_)) { | 275 | 145 | std::visit( | 276 | 145 | [&](auto result_is_nullable) { | 277 | 145 | if (attr.enable_aggregate_function_null_v2) { | 278 | 145 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 145 | AggregateFunctionTemplate>( | 280 | 145 | result.release(), argument_types_, attr.is_window_function)); | 281 | 145 | } else { | 282 | 145 | result.reset(new NullableT<false, result_is_nullable, | 283 | 145 | AggregateFunctionTemplate>( | 284 | 145 | result.release(), argument_types_, attr.is_window_function)); | 285 | 145 | } | 286 | 145 | }, | 287 | 145 | make_bool_variant(result_is_nullable)); | 288 | 145 | } | 289 | 147 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 147 | return AggregateFunctionPtr(result.release()); | 291 | 147 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 498 | TArgs&&... args) { | 268 | 498 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 498 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 498 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 498 | if (have_nullable(argument_types_)) { | 275 | 380 | std::visit( | 276 | 380 | [&](auto result_is_nullable) { | 277 | 380 | if (attr.enable_aggregate_function_null_v2) { | 278 | 380 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 380 | AggregateFunctionTemplate>( | 280 | 380 | result.release(), argument_types_, attr.is_window_function)); | 281 | 380 | } else { | 282 | 380 | result.reset(new NullableT<false, result_is_nullable, | 283 | 380 | AggregateFunctionTemplate>( | 284 | 380 | result.release(), argument_types_, attr.is_window_function)); | 285 | 380 | } | 286 | 380 | }, | 287 | 380 | make_bool_variant(result_is_nullable)); | 288 | 380 | } | 289 | 498 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 498 | return AggregateFunctionPtr(result.release()); | 291 | 498 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 492 | TArgs&&... args) { | 268 | 492 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 492 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 492 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 492 | if (have_nullable(argument_types_)) { | 275 | 381 | std::visit( | 276 | 381 | [&](auto result_is_nullable) { | 277 | 381 | if (attr.enable_aggregate_function_null_v2) { | 278 | 381 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 381 | AggregateFunctionTemplate>( | 280 | 381 | result.release(), argument_types_, attr.is_window_function)); | 281 | 381 | } else { | 282 | 381 | result.reset(new NullableT<false, result_is_nullable, | 283 | 381 | AggregateFunctionTemplate>( | 284 | 381 | result.release(), argument_types_, attr.is_window_function)); | 285 | 381 | } | 286 | 381 | }, | 287 | 381 | make_bool_variant(result_is_nullable)); | 288 | 381 | } | 289 | 492 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 492 | return AggregateFunctionPtr(result.release()); | 291 | 492 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 13.0k | TArgs&&... args) { | 268 | 13.0k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 13.0k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 13.0k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 13.0k | if (have_nullable(argument_types_)) { | 275 | 8.85k | std::visit( | 276 | 8.85k | [&](auto result_is_nullable) { | 277 | 8.85k | if (attr.enable_aggregate_function_null_v2) { | 278 | 8.85k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 8.85k | AggregateFunctionTemplate>( | 280 | 8.85k | result.release(), argument_types_, attr.is_window_function)); | 281 | 8.85k | } else { | 282 | 8.85k | result.reset(new NullableT<false, result_is_nullable, | 283 | 8.85k | AggregateFunctionTemplate>( | 284 | 8.85k | result.release(), argument_types_, attr.is_window_function)); | 285 | 8.85k | } | 286 | 8.85k | }, | 287 | 8.85k | make_bool_variant(result_is_nullable)); | 288 | 8.85k | } | 289 | 13.0k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 13.0k | return AggregateFunctionPtr(result.release()); | 291 | 13.0k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 4.43k | TArgs&&... args) { | 268 | 4.43k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 4.43k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4.43k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4.43k | if (have_nullable(argument_types_)) { | 275 | 2.60k | std::visit( | 276 | 2.60k | [&](auto result_is_nullable) { | 277 | 2.60k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.60k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.60k | AggregateFunctionTemplate>( | 280 | 2.60k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.60k | } else { | 282 | 2.60k | result.reset(new NullableT<false, result_is_nullable, | 283 | 2.60k | AggregateFunctionTemplate>( | 284 | 2.60k | result.release(), argument_types_, attr.is_window_function)); | 285 | 2.60k | } | 286 | 2.60k | }, | 287 | 2.60k | make_bool_variant(result_is_nullable)); | 288 | 2.60k | } | 289 | 4.43k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4.43k | return AggregateFunctionPtr(result.release()); | 291 | 4.43k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 324 | TArgs&&... args) { | 268 | 324 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 324 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 324 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 324 | if (have_nullable(argument_types_)) { | 275 | 163 | std::visit( | 276 | 163 | [&](auto result_is_nullable) { | 277 | 163 | if (attr.enable_aggregate_function_null_v2) { | 278 | 163 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 163 | AggregateFunctionTemplate>( | 280 | 163 | result.release(), argument_types_, attr.is_window_function)); | 281 | 163 | } else { | 282 | 163 | result.reset(new NullableT<false, result_is_nullable, | 283 | 163 | AggregateFunctionTemplate>( | 284 | 163 | result.release(), argument_types_, attr.is_window_function)); | 285 | 163 | } | 286 | 163 | }, | 287 | 163 | make_bool_variant(result_is_nullable)); | 288 | 163 | } | 289 | 324 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 324 | return AggregateFunctionPtr(result.release()); | 291 | 324 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 258 | TArgs&&... args) { | 268 | 258 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 258 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 258 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 260 | if (have_nullable(argument_types_)) { | 275 | 260 | std::visit( | 276 | 260 | [&](auto result_is_nullable) { | 277 | 260 | if (attr.enable_aggregate_function_null_v2) { | 278 | 260 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 260 | AggregateFunctionTemplate>( | 280 | 260 | result.release(), argument_types_, attr.is_window_function)); | 281 | 260 | } else { | 282 | 260 | result.reset(new NullableT<false, result_is_nullable, | 283 | 260 | AggregateFunctionTemplate>( | 284 | 260 | result.release(), argument_types_, attr.is_window_function)); | 285 | 260 | } | 286 | 260 | }, | 287 | 260 | make_bool_variant(result_is_nullable)); | 288 | 260 | } | 289 | 258 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 258 | return AggregateFunctionPtr(result.release()); | 291 | 258 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 361 | TArgs&&... args) { | 268 | 361 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 361 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 361 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 361 | if (have_nullable(argument_types_)) { | 275 | 349 | std::visit( | 276 | 349 | [&](auto result_is_nullable) { | 277 | 349 | if (attr.enable_aggregate_function_null_v2) { | 278 | 349 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 349 | AggregateFunctionTemplate>( | 280 | 349 | result.release(), argument_types_, attr.is_window_function)); | 281 | 349 | } else { | 282 | 349 | result.reset(new NullableT<false, result_is_nullable, | 283 | 349 | AggregateFunctionTemplate>( | 284 | 349 | result.release(), argument_types_, attr.is_window_function)); | 285 | 349 | } | 286 | 349 | }, | 287 | 349 | make_bool_variant(result_is_nullable)); | 288 | 349 | } | 289 | 361 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 361 | return AggregateFunctionPtr(result.release()); | 291 | 361 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 134 | TArgs&&... args) { | 268 | 134 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 134 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 134 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 134 | if (have_nullable(argument_types_)) { | 275 | 132 | std::visit( | 276 | 132 | [&](auto result_is_nullable) { | 277 | 132 | if (attr.enable_aggregate_function_null_v2) { | 278 | 132 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 132 | AggregateFunctionTemplate>( | 280 | 132 | result.release(), argument_types_, attr.is_window_function)); | 281 | 132 | } else { | 282 | 132 | result.reset(new NullableT<false, result_is_nullable, | 283 | 132 | AggregateFunctionTemplate>( | 284 | 132 | result.release(), argument_types_, attr.is_window_function)); | 285 | 132 | } | 286 | 132 | }, | 287 | 132 | make_bool_variant(result_is_nullable)); | 288 | 132 | } | 289 | 134 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 134 | return AggregateFunctionPtr(result.release()); | 291 | 134 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.79k | TArgs&&... args) { | 268 | 2.79k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2.79k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.79k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.79k | if (have_nullable(argument_types_)) { | 275 | 1.81k | std::visit( | 276 | 1.81k | [&](auto result_is_nullable) { | 277 | 1.81k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.81k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.81k | AggregateFunctionTemplate>( | 280 | 1.81k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.81k | } else { | 282 | 1.81k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.81k | AggregateFunctionTemplate>( | 284 | 1.81k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.81k | } | 286 | 1.81k | }, | 287 | 1.81k | make_bool_variant(result_is_nullable)); | 288 | 1.81k | } | 289 | 2.79k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.79k | return AggregateFunctionPtr(result.release()); | 291 | 2.79k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE20EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1 | TArgs&&... args) { | 268 | 1 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1 | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 1 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1 | return AggregateFunctionPtr(result.release()); | 291 | 1 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE30EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 776 | TArgs&&... args) { | 268 | 776 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 776 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 776 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 776 | if (have_nullable(argument_types_)) { | 275 | 620 | std::visit( | 276 | 620 | [&](auto result_is_nullable) { | 277 | 620 | if (attr.enable_aggregate_function_null_v2) { | 278 | 620 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 620 | AggregateFunctionTemplate>( | 280 | 620 | result.release(), argument_types_, attr.is_window_function)); | 281 | 620 | } else { | 282 | 620 | result.reset(new NullableT<false, result_is_nullable, | 283 | 620 | AggregateFunctionTemplate>( | 284 | 620 | result.release(), argument_types_, attr.is_window_function)); | 285 | 620 | } | 286 | 620 | }, | 287 | 620 | make_bool_variant(result_is_nullable)); | 288 | 620 | } | 289 | 776 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 776 | return AggregateFunctionPtr(result.release()); | 291 | 776 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 51 | TArgs&&... args) { | 268 | 51 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 51 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 51 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 51 | if (have_nullable(argument_types_)) { | 275 | 51 | std::visit( | 276 | 51 | [&](auto result_is_nullable) { | 277 | 51 | if (attr.enable_aggregate_function_null_v2) { | 278 | 51 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 51 | AggregateFunctionTemplate>( | 280 | 51 | result.release(), argument_types_, attr.is_window_function)); | 281 | 51 | } else { | 282 | 51 | result.reset(new NullableT<false, result_is_nullable, | 283 | 51 | AggregateFunctionTemplate>( | 284 | 51 | result.release(), argument_types_, attr.is_window_function)); | 285 | 51 | } | 286 | 51 | }, | 287 | 51 | make_bool_variant(result_is_nullable)); | 288 | 51 | } | 289 | 51 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 51 | return AggregateFunctionPtr(result.release()); | 291 | 51 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 4 | TArgs&&... args) { | 268 | 4 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4 | if (have_nullable(argument_types_)) { | 275 | 4 | std::visit( | 276 | 4 | [&](auto result_is_nullable) { | 277 | 4 | if (attr.enable_aggregate_function_null_v2) { | 278 | 4 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4 | AggregateFunctionTemplate>( | 280 | 4 | result.release(), argument_types_, attr.is_window_function)); | 281 | 4 | } else { | 282 | 4 | result.reset(new NullableT<false, result_is_nullable, | 283 | 4 | AggregateFunctionTemplate>( | 284 | 4 | result.release(), argument_types_, attr.is_window_function)); | 285 | 4 | } | 286 | 4 | }, | 287 | 4 | make_bool_variant(result_is_nullable)); | 288 | 4 | } | 289 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4 | return AggregateFunctionPtr(result.release()); | 291 | 4 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_21SingleValueDataStringEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 163 | TArgs&&... args) { | 268 | 163 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 163 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 163 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 163 | if (have_nullable(argument_types_)) { | 275 | 122 | std::visit( | 276 | 122 | [&](auto result_is_nullable) { | 277 | 122 | if (attr.enable_aggregate_function_null_v2) { | 278 | 122 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 122 | AggregateFunctionTemplate>( | 280 | 122 | result.release(), argument_types_, attr.is_window_function)); | 281 | 122 | } else { | 282 | 122 | result.reset(new NullableT<false, result_is_nullable, | 283 | 122 | AggregateFunctionTemplate>( | 284 | 122 | result.release(), argument_types_, attr.is_window_function)); | 285 | 122 | } | 286 | 122 | }, | 287 | 122 | make_bool_variant(result_is_nullable)); | 288 | 122 | } | 289 | 163 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 163 | return AggregateFunctionPtr(result.release()); | 291 | 163 | } |
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 | 267 | 14 | TArgs&&... args) { | 268 | 14 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 14 | if (have_nullable(argument_types_)) { | 275 | 14 | std::visit( | 276 | 14 | [&](auto result_is_nullable) { | 277 | 14 | if (attr.enable_aggregate_function_null_v2) { | 278 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 14 | AggregateFunctionTemplate>( | 280 | 14 | result.release(), argument_types_, attr.is_window_function)); | 281 | 14 | } else { | 282 | 14 | result.reset(new NullableT<false, result_is_nullable, | 283 | 14 | AggregateFunctionTemplate>( | 284 | 14 | result.release(), argument_types_, attr.is_window_function)); | 285 | 14 | } | 286 | 14 | }, | 287 | 14 | make_bool_variant(result_is_nullable)); | 288 | 14 | } | 289 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 14 | return AggregateFunctionPtr(result.release()); | 291 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 22 | TArgs&&... args) { | 268 | 22 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 22 | if (have_nullable(argument_types_)) { | 275 | 22 | std::visit( | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 22 | result.reset(new NullableT<false, result_is_nullable, | 283 | 22 | AggregateFunctionTemplate>( | 284 | 22 | result.release(), argument_types_, attr.is_window_function)); | 285 | 22 | } | 286 | 22 | }, | 287 | 22 | make_bool_variant(result_is_nullable)); | 288 | 22 | } | 289 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 22 | return AggregateFunctionPtr(result.release()); | 291 | 22 | } |
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 | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE36EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE37EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE2EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 14 | TArgs&&... args) { | 268 | 14 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 14 | if (have_nullable(argument_types_)) { | 275 | 14 | std::visit( | 276 | 14 | [&](auto result_is_nullable) { | 277 | 14 | if (attr.enable_aggregate_function_null_v2) { | 278 | 14 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 14 | AggregateFunctionTemplate>( | 280 | 14 | result.release(), argument_types_, attr.is_window_function)); | 281 | 14 | } else { | 282 | 14 | result.reset(new NullableT<false, result_is_nullable, | 283 | 14 | AggregateFunctionTemplate>( | 284 | 14 | result.release(), argument_types_, attr.is_window_function)); | 285 | 14 | } | 286 | 14 | }, | 287 | 14 | make_bool_variant(result_is_nullable)); | 288 | 14 | } | 289 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 14 | return AggregateFunctionPtr(result.release()); | 291 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 14 | TArgs&&... args) { | 268 | 14 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 14 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 14 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 14 | if (have_nullable(argument_types_)) { | 275 | 10 | std::visit( | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 10 | result.reset(new NullableT<false, result_is_nullable, | 283 | 10 | AggregateFunctionTemplate>( | 284 | 10 | result.release(), argument_types_, attr.is_window_function)); | 285 | 10 | } | 286 | 10 | }, | 287 | 10 | make_bool_variant(result_is_nullable)); | 288 | 10 | } | 289 | 14 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 14 | return AggregateFunctionPtr(result.release()); | 291 | 14 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 6 | TArgs&&... args) { | 268 | 6 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 6 | if (have_nullable(argument_types_)) { | 275 | 6 | std::visit( | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 6 | result.reset(new NullableT<false, result_is_nullable, | 283 | 6 | AggregateFunctionTemplate>( | 284 | 6 | result.release(), argument_types_, attr.is_window_function)); | 285 | 6 | } | 286 | 6 | }, | 287 | 6 | make_bool_variant(result_is_nullable)); | 288 | 6 | } | 289 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 6 | return AggregateFunctionPtr(result.release()); | 291 | 6 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 586 | TArgs&&... args) { | 268 | 586 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 586 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 586 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 586 | if (have_nullable(argument_types_)) { | 275 | 537 | std::visit( | 276 | 537 | [&](auto result_is_nullable) { | 277 | 537 | if (attr.enable_aggregate_function_null_v2) { | 278 | 537 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 537 | AggregateFunctionTemplate>( | 280 | 537 | result.release(), argument_types_, attr.is_window_function)); | 281 | 537 | } else { | 282 | 537 | result.reset(new NullableT<false, result_is_nullable, | 283 | 537 | AggregateFunctionTemplate>( | 284 | 537 | result.release(), argument_types_, attr.is_window_function)); | 285 | 537 | } | 286 | 537 | }, | 287 | 537 | make_bool_variant(result_is_nullable)); | 288 | 537 | } | 289 | 586 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 586 | return AggregateFunctionPtr(result.release()); | 291 | 586 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 46 | TArgs&&... args) { | 268 | 46 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 46 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 46 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 46 | if (have_nullable(argument_types_)) { | 275 | 40 | std::visit( | 276 | 40 | [&](auto result_is_nullable) { | 277 | 40 | if (attr.enable_aggregate_function_null_v2) { | 278 | 40 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 40 | AggregateFunctionTemplate>( | 280 | 40 | result.release(), argument_types_, attr.is_window_function)); | 281 | 40 | } else { | 282 | 40 | result.reset(new NullableT<false, result_is_nullable, | 283 | 40 | AggregateFunctionTemplate>( | 284 | 40 | result.release(), argument_types_, attr.is_window_function)); | 285 | 40 | } | 286 | 40 | }, | 287 | 40 | make_bool_variant(result_is_nullable)); | 288 | 40 | } | 289 | 46 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 46 | return AggregateFunctionPtr(result.release()); | 291 | 46 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 6 | TArgs&&... args) { | 268 | 6 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 6 | if (have_nullable(argument_types_)) { | 275 | 6 | std::visit( | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 6 | result.reset(new NullableT<false, result_is_nullable, | 283 | 6 | AggregateFunctionTemplate>( | 284 | 6 | result.release(), argument_types_, attr.is_window_function)); | 285 | 6 | } | 286 | 6 | }, | 287 | 6 | make_bool_variant(result_is_nullable)); | 288 | 6 | } | 289 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 6 | return AggregateFunctionPtr(result.release()); | 291 | 6 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 10 | TArgs&&... args) { | 268 | 10 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 10 | if (have_nullable(argument_types_)) { | 275 | 10 | std::visit( | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 10 | result.reset(new NullableT<false, result_is_nullable, | 283 | 10 | AggregateFunctionTemplate>( | 284 | 10 | result.release(), argument_types_, attr.is_window_function)); | 285 | 10 | } | 286 | 10 | }, | 287 | 10 | make_bool_variant(result_is_nullable)); | 288 | 10 | } | 289 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 10 | return AggregateFunctionPtr(result.release()); | 291 | 10 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 10 | TArgs&&... args) { | 268 | 10 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 10 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 10 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 10 | if (have_nullable(argument_types_)) { | 275 | 10 | std::visit( | 276 | 10 | [&](auto result_is_nullable) { | 277 | 10 | if (attr.enable_aggregate_function_null_v2) { | 278 | 10 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 10 | AggregateFunctionTemplate>( | 280 | 10 | result.release(), argument_types_, attr.is_window_function)); | 281 | 10 | } else { | 282 | 10 | result.reset(new NullableT<false, result_is_nullable, | 283 | 10 | AggregateFunctionTemplate>( | 284 | 10 | result.release(), argument_types_, attr.is_window_function)); | 285 | 10 | } | 286 | 10 | }, | 287 | 10 | make_bool_variant(result_is_nullable)); | 288 | 10 | } | 289 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 10 | return AggregateFunctionPtr(result.release()); | 291 | 10 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 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 | 267 | 7 | TArgs&&... args) { | 268 | 7 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 7 | if (have_nullable(argument_types_)) { | 275 | 7 | std::visit( | 276 | 7 | [&](auto result_is_nullable) { | 277 | 7 | if (attr.enable_aggregate_function_null_v2) { | 278 | 7 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 7 | AggregateFunctionTemplate>( | 280 | 7 | result.release(), argument_types_, attr.is_window_function)); | 281 | 7 | } else { | 282 | 7 | result.reset(new NullableT<false, result_is_nullable, | 283 | 7 | AggregateFunctionTemplate>( | 284 | 7 | result.release(), argument_types_, attr.is_window_function)); | 285 | 7 | } | 286 | 7 | }, | 287 | 7 | make_bool_variant(result_is_nullable)); | 288 | 7 | } | 289 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 7 | return AggregateFunctionPtr(result.release()); | 291 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_26SingleValueDataComplexTypeEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 58 | TArgs&&... args) { | 268 | 58 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 58 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 58 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 58 | if (have_nullable(argument_types_)) { | 275 | 22 | std::visit( | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 22 | result.reset(new NullableT<false, result_is_nullable, | 283 | 22 | AggregateFunctionTemplate>( | 284 | 22 | result.release(), argument_types_, attr.is_window_function)); | 285 | 22 | } | 286 | 22 | }, | 287 | 22 | make_bool_variant(result_is_nullable)); | 288 | 22 | } | 289 | 58 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 58 | return AggregateFunctionPtr(result.release()); | 291 | 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 | 267 | 97 | TArgs&&... args) { | 268 | 97 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 97 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 97 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 97 | if (have_nullable(argument_types_)) { | 275 | 87 | std::visit( | 276 | 87 | [&](auto result_is_nullable) { | 277 | 87 | if (attr.enable_aggregate_function_null_v2) { | 278 | 87 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 87 | AggregateFunctionTemplate>( | 280 | 87 | result.release(), argument_types_, attr.is_window_function)); | 281 | 87 | } else { | 282 | 87 | result.reset(new NullableT<false, result_is_nullable, | 283 | 87 | AggregateFunctionTemplate>( | 284 | 87 | result.release(), argument_types_, attr.is_window_function)); | 285 | 87 | } | 286 | 87 | }, | 287 | 87 | make_bool_variant(result_is_nullable)); | 288 | 87 | } | 289 | 97 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 97 | return AggregateFunctionPtr(result.release()); | 291 | 97 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE28ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 8 | TArgs&&... args) { | 268 | 8 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 8 | if (have_nullable(argument_types_)) { | 275 | 8 | std::visit( | 276 | 8 | [&](auto result_is_nullable) { | 277 | 8 | if (attr.enable_aggregate_function_null_v2) { | 278 | 8 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 8 | AggregateFunctionTemplate>( | 280 | 8 | result.release(), argument_types_, attr.is_window_function)); | 281 | 8 | } else { | 282 | 8 | result.reset(new NullableT<false, result_is_nullable, | 283 | 8 | AggregateFunctionTemplate>( | 284 | 8 | result.release(), argument_types_, attr.is_window_function)); | 285 | 8 | } | 286 | 8 | }, | 287 | 8 | make_bool_variant(result_is_nullable)); | 288 | 8 | } | 289 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 8 | return AggregateFunctionPtr(result.release()); | 291 | 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 | 267 | 627 | TArgs&&... args) { | 268 | 627 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 627 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 627 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 627 | if (have_nullable(argument_types_)) { | 275 | 157 | std::visit( | 276 | 157 | [&](auto result_is_nullable) { | 277 | 157 | if (attr.enable_aggregate_function_null_v2) { | 278 | 157 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 157 | AggregateFunctionTemplate>( | 280 | 157 | result.release(), argument_types_, attr.is_window_function)); | 281 | 157 | } else { | 282 | 157 | result.reset(new NullableT<false, result_is_nullable, | 283 | 157 | AggregateFunctionTemplate>( | 284 | 157 | result.release(), argument_types_, attr.is_window_function)); | 285 | 157 | } | 286 | 157 | }, | 287 | 157 | make_bool_variant(result_is_nullable)); | 288 | 157 | } | 289 | 627 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 627 | return AggregateFunctionPtr(result.release()); | 291 | 627 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE29ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 9 | TArgs&&... args) { | 268 | 9 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 9 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 9 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 9 | if (have_nullable(argument_types_)) { | 275 | 9 | std::visit( | 276 | 9 | [&](auto result_is_nullable) { | 277 | 9 | if (attr.enable_aggregate_function_null_v2) { | 278 | 9 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 9 | AggregateFunctionTemplate>( | 280 | 9 | result.release(), argument_types_, attr.is_window_function)); | 281 | 9 | } else { | 282 | 9 | result.reset(new NullableT<false, result_is_nullable, | 283 | 9 | AggregateFunctionTemplate>( | 284 | 9 | result.release(), argument_types_, attr.is_window_function)); | 285 | 9 | } | 286 | 9 | }, | 287 | 9 | make_bool_variant(result_is_nullable)); | 288 | 9 | } | 289 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 9 | return AggregateFunctionPtr(result.release()); | 291 | 9 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_30ENS_24AggregateFunctionAvgDataILS3_30EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 93 | TArgs&&... args) { | 268 | 93 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 93 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 93 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 93 | if (have_nullable(argument_types_)) { | 275 | 93 | std::visit( | 276 | 93 | [&](auto result_is_nullable) { | 277 | 93 | if (attr.enable_aggregate_function_null_v2) { | 278 | 93 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 93 | AggregateFunctionTemplate>( | 280 | 93 | result.release(), argument_types_, attr.is_window_function)); | 281 | 93 | } else { | 282 | 93 | result.reset(new NullableT<false, result_is_nullable, | 283 | 93 | AggregateFunctionTemplate>( | 284 | 93 | result.release(), argument_types_, attr.is_window_function)); | 285 | 93 | } | 286 | 93 | }, | 287 | 93 | make_bool_variant(result_is_nullable)); | 288 | 93 | } | 289 | 93 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 93 | return AggregateFunctionPtr(result.release()); | 291 | 93 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE30ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 24 | TArgs&&... args) { | 268 | 24 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 24 | if (have_nullable(argument_types_)) { | 275 | 24 | std::visit( | 276 | 24 | [&](auto result_is_nullable) { | 277 | 24 | if (attr.enable_aggregate_function_null_v2) { | 278 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 24 | AggregateFunctionTemplate>( | 280 | 24 | result.release(), argument_types_, attr.is_window_function)); | 281 | 24 | } else { | 282 | 24 | result.reset(new NullableT<false, result_is_nullable, | 283 | 24 | AggregateFunctionTemplate>( | 284 | 24 | result.release(), argument_types_, attr.is_window_function)); | 285 | 24 | } | 286 | 24 | }, | 287 | 24 | make_bool_variant(result_is_nullable)); | 288 | 24 | } | 289 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 24 | return AggregateFunctionPtr(result.release()); | 291 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE35ELS3_35ENS_24AggregateFunctionAvgDataILS3_35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 98 | TArgs&&... args) { | 268 | 98 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 98 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 98 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 98 | if (have_nullable(argument_types_)) { | 275 | 98 | std::visit( | 276 | 98 | [&](auto result_is_nullable) { | 277 | 98 | if (attr.enable_aggregate_function_null_v2) { | 278 | 98 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 98 | AggregateFunctionTemplate>( | 280 | 98 | result.release(), argument_types_, attr.is_window_function)); | 281 | 98 | } else { | 282 | 98 | result.reset(new NullableT<false, result_is_nullable, | 283 | 98 | AggregateFunctionTemplate>( | 284 | 98 | result.release(), argument_types_, attr.is_window_function)); | 285 | 98 | } | 286 | 98 | }, | 287 | 98 | make_bool_variant(result_is_nullable)); | 288 | 98 | } | 289 | 98 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 98 | return AggregateFunctionPtr(result.release()); | 291 | 98 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 102 | TArgs&&... args) { | 268 | 102 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 102 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 102 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 102 | if (have_nullable(argument_types_)) { | 275 | 47 | std::visit( | 276 | 47 | [&](auto result_is_nullable) { | 277 | 47 | if (attr.enable_aggregate_function_null_v2) { | 278 | 47 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 47 | AggregateFunctionTemplate>( | 280 | 47 | result.release(), argument_types_, attr.is_window_function)); | 281 | 47 | } else { | 282 | 47 | result.reset(new NullableT<false, result_is_nullable, | 283 | 47 | AggregateFunctionTemplate>( | 284 | 47 | result.release(), argument_types_, attr.is_window_function)); | 285 | 47 | } | 286 | 47 | }, | 287 | 47 | make_bool_variant(result_is_nullable)); | 288 | 47 | } | 289 | 102 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 102 | return AggregateFunctionPtr(result.release()); | 291 | 102 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 34 | TArgs&&... args) { | 268 | 34 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 34 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 34 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 34 | if (have_nullable(argument_types_)) { | 275 | 26 | std::visit( | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 26 | result.reset(new NullableT<false, result_is_nullable, | 283 | 26 | AggregateFunctionTemplate>( | 284 | 26 | result.release(), argument_types_, attr.is_window_function)); | 285 | 26 | } | 286 | 26 | }, | 287 | 26 | make_bool_variant(result_is_nullable)); | 288 | 26 | } | 289 | 34 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 34 | return AggregateFunctionPtr(result.release()); | 291 | 34 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.18k | TArgs&&... args) { | 268 | 1.18k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.18k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.18k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.18k | if (have_nullable(argument_types_)) { | 275 | 461 | std::visit( | 276 | 461 | [&](auto result_is_nullable) { | 277 | 461 | if (attr.enable_aggregate_function_null_v2) { | 278 | 461 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 461 | AggregateFunctionTemplate>( | 280 | 461 | result.release(), argument_types_, attr.is_window_function)); | 281 | 461 | } else { | 282 | 461 | result.reset(new NullableT<false, result_is_nullable, | 283 | 461 | AggregateFunctionTemplate>( | 284 | 461 | result.release(), argument_types_, attr.is_window_function)); | 285 | 461 | } | 286 | 461 | }, | 287 | 461 | make_bool_variant(result_is_nullable)); | 288 | 461 | } | 289 | 1.18k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.18k | return AggregateFunctionPtr(result.release()); | 291 | 1.18k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 408 | TArgs&&... args) { | 268 | 408 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 408 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 408 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 408 | if (have_nullable(argument_types_)) { | 275 | 358 | std::visit( | 276 | 358 | [&](auto result_is_nullable) { | 277 | 358 | if (attr.enable_aggregate_function_null_v2) { | 278 | 358 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 358 | AggregateFunctionTemplate>( | 280 | 358 | result.release(), argument_types_, attr.is_window_function)); | 281 | 358 | } else { | 282 | 358 | result.reset(new NullableT<false, result_is_nullable, | 283 | 358 | AggregateFunctionTemplate>( | 284 | 358 | result.release(), argument_types_, attr.is_window_function)); | 285 | 358 | } | 286 | 358 | }, | 287 | 358 | make_bool_variant(result_is_nullable)); | 288 | 358 | } | 289 | 408 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 408 | return AggregateFunctionPtr(result.release()); | 291 | 408 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2 | TArgs&&... args) { | 268 | 2 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2 | return AggregateFunctionPtr(result.release()); | 291 | 2 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE9ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 286 | TArgs&&... args) { | 268 | 286 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 286 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 286 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 286 | if (have_nullable(argument_types_)) { | 275 | 274 | std::visit( | 276 | 274 | [&](auto result_is_nullable) { | 277 | 274 | if (attr.enable_aggregate_function_null_v2) { | 278 | 274 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 274 | AggregateFunctionTemplate>( | 280 | 274 | result.release(), argument_types_, attr.is_window_function)); | 281 | 274 | } else { | 282 | 274 | result.reset(new NullableT<false, result_is_nullable, | 283 | 274 | AggregateFunctionTemplate>( | 284 | 274 | result.release(), argument_types_, attr.is_window_function)); | 285 | 274 | } | 286 | 274 | }, | 287 | 274 | make_bool_variant(result_is_nullable)); | 288 | 274 | } | 289 | 286 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 286 | return AggregateFunctionPtr(result.release()); | 291 | 286 | } |
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 | 267 | 36 | TArgs&&... args) { | 268 | 36 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 36 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 36 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 36 | if (have_nullable(argument_types_)) { | 275 | 28 | std::visit( | 276 | 28 | [&](auto result_is_nullable) { | 277 | 28 | if (attr.enable_aggregate_function_null_v2) { | 278 | 28 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 28 | AggregateFunctionTemplate>( | 280 | 28 | result.release(), argument_types_, attr.is_window_function)); | 281 | 28 | } else { | 282 | 28 | result.reset(new NullableT<false, result_is_nullable, | 283 | 28 | AggregateFunctionTemplate>( | 284 | 28 | result.release(), argument_types_, attr.is_window_function)); | 285 | 28 | } | 286 | 28 | }, | 287 | 28 | make_bool_variant(result_is_nullable)); | 288 | 28 | } | 289 | 36 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 36 | return AggregateFunctionPtr(result.release()); | 291 | 36 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_31AggregateFunctionGroupBitOrDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 33 | TArgs&&... args) { | 268 | 33 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 33 | if (have_nullable(argument_types_)) { | 275 | 25 | std::visit( | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 25 | result.reset(new NullableT<false, result_is_nullable, | 283 | 25 | AggregateFunctionTemplate>( | 284 | 25 | result.release(), argument_types_, attr.is_window_function)); | 285 | 25 | } | 286 | 25 | }, | 287 | 25 | make_bool_variant(result_is_nullable)); | 288 | 25 | } | 289 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 33 | return AggregateFunctionPtr(result.release()); | 291 | 33 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_31AggregateFunctionGroupBitOrDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 456 | TArgs&&... args) { | 268 | 456 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 456 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 456 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 456 | if (have_nullable(argument_types_)) { | 275 | 445 | std::visit( | 276 | 445 | [&](auto result_is_nullable) { | 277 | 445 | if (attr.enable_aggregate_function_null_v2) { | 278 | 445 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 445 | AggregateFunctionTemplate>( | 280 | 445 | result.release(), argument_types_, attr.is_window_function)); | 281 | 445 | } else { | 282 | 445 | result.reset(new NullableT<false, result_is_nullable, | 283 | 445 | AggregateFunctionTemplate>( | 284 | 445 | result.release(), argument_types_, attr.is_window_function)); | 285 | 445 | } | 286 | 445 | }, | 287 | 445 | make_bool_variant(result_is_nullable)); | 288 | 445 | } | 289 | 456 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 456 | return AggregateFunctionPtr(result.release()); | 291 | 456 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_31AggregateFunctionGroupBitOrDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 35 | TArgs&&... args) { | 268 | 35 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 35 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 35 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 35 | if (have_nullable(argument_types_)) { | 275 | 26 | std::visit( | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 26 | result.reset(new NullableT<false, result_is_nullable, | 283 | 26 | AggregateFunctionTemplate>( | 284 | 26 | result.release(), argument_types_, attr.is_window_function)); | 285 | 26 | } | 286 | 26 | }, | 287 | 26 | make_bool_variant(result_is_nullable)); | 288 | 26 | } | 289 | 35 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 35 | return AggregateFunctionPtr(result.release()); | 291 | 35 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_31AggregateFunctionGroupBitOrDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 35 | TArgs&&... args) { | 268 | 35 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 35 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 35 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 35 | if (have_nullable(argument_types_)) { | 275 | 27 | std::visit( | 276 | 27 | [&](auto result_is_nullable) { | 277 | 27 | if (attr.enable_aggregate_function_null_v2) { | 278 | 27 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 27 | AggregateFunctionTemplate>( | 280 | 27 | result.release(), argument_types_, attr.is_window_function)); | 281 | 27 | } else { | 282 | 27 | result.reset(new NullableT<false, result_is_nullable, | 283 | 27 | AggregateFunctionTemplate>( | 284 | 27 | result.release(), argument_types_, attr.is_window_function)); | 285 | 27 | } | 286 | 27 | }, | 287 | 27 | make_bool_variant(result_is_nullable)); | 288 | 27 | } | 289 | 35 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 35 | return AggregateFunctionPtr(result.release()); | 291 | 35 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitAndDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 33 | TArgs&&... args) { | 268 | 33 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 33 | if (have_nullable(argument_types_)) { | 275 | 25 | std::visit( | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 25 | result.reset(new NullableT<false, result_is_nullable, | 283 | 25 | AggregateFunctionTemplate>( | 284 | 25 | result.release(), argument_types_, attr.is_window_function)); | 285 | 25 | } | 286 | 25 | }, | 287 | 25 | make_bool_variant(result_is_nullable)); | 288 | 25 | } | 289 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 33 | return AggregateFunctionPtr(result.release()); | 291 | 33 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitAndDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 33 | TArgs&&... args) { | 268 | 33 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 33 | if (have_nullable(argument_types_)) { | 275 | 25 | std::visit( | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 25 | result.reset(new NullableT<false, result_is_nullable, | 283 | 25 | AggregateFunctionTemplate>( | 284 | 25 | result.release(), argument_types_, attr.is_window_function)); | 285 | 25 | } | 286 | 25 | }, | 287 | 25 | make_bool_variant(result_is_nullable)); | 288 | 25 | } | 289 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 33 | return AggregateFunctionPtr(result.release()); | 291 | 33 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitAndDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 461 | TArgs&&... args) { | 268 | 461 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 461 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 461 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 461 | if (have_nullable(argument_types_)) { | 275 | 446 | std::visit( | 276 | 446 | [&](auto result_is_nullable) { | 277 | 446 | if (attr.enable_aggregate_function_null_v2) { | 278 | 446 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 446 | AggregateFunctionTemplate>( | 280 | 446 | result.release(), argument_types_, attr.is_window_function)); | 281 | 446 | } else { | 282 | 446 | result.reset(new NullableT<false, result_is_nullable, | 283 | 446 | AggregateFunctionTemplate>( | 284 | 446 | result.release(), argument_types_, attr.is_window_function)); | 285 | 446 | } | 286 | 446 | }, | 287 | 446 | make_bool_variant(result_is_nullable)); | 288 | 446 | } | 289 | 461 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 461 | return AggregateFunctionPtr(result.release()); | 291 | 461 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitAndDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 35 | TArgs&&... args) { | 268 | 35 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 35 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 35 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 35 | if (have_nullable(argument_types_)) { | 275 | 26 | std::visit( | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 26 | result.reset(new NullableT<false, result_is_nullable, | 283 | 26 | AggregateFunctionTemplate>( | 284 | 26 | result.release(), argument_types_, attr.is_window_function)); | 285 | 26 | } | 286 | 26 | }, | 287 | 26 | make_bool_variant(result_is_nullable)); | 288 | 26 | } | 289 | 35 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 35 | return AggregateFunctionPtr(result.release()); | 291 | 35 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitAndDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 35 | TArgs&&... args) { | 268 | 35 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 35 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 35 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 35 | if (have_nullable(argument_types_)) { | 275 | 27 | std::visit( | 276 | 27 | [&](auto result_is_nullable) { | 277 | 27 | if (attr.enable_aggregate_function_null_v2) { | 278 | 27 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 27 | AggregateFunctionTemplate>( | 280 | 27 | result.release(), argument_types_, attr.is_window_function)); | 281 | 27 | } else { | 282 | 27 | result.reset(new NullableT<false, result_is_nullable, | 283 | 27 | AggregateFunctionTemplate>( | 284 | 27 | result.release(), argument_types_, attr.is_window_function)); | 285 | 27 | } | 286 | 27 | }, | 287 | 27 | make_bool_variant(result_is_nullable)); | 288 | 27 | } | 289 | 35 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 35 | return AggregateFunctionPtr(result.release()); | 291 | 35 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE3ENS_32AggregateFunctionGroupBitXorDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 33 | TArgs&&... args) { | 268 | 33 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 33 | if (have_nullable(argument_types_)) { | 275 | 25 | std::visit( | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 25 | result.reset(new NullableT<false, result_is_nullable, | 283 | 25 | AggregateFunctionTemplate>( | 284 | 25 | result.release(), argument_types_, attr.is_window_function)); | 285 | 25 | } | 286 | 25 | }, | 287 | 25 | make_bool_variant(result_is_nullable)); | 288 | 25 | } | 289 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 33 | return AggregateFunctionPtr(result.release()); | 291 | 33 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE4ENS_32AggregateFunctionGroupBitXorDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 33 | TArgs&&... args) { | 268 | 33 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 33 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 33 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 33 | if (have_nullable(argument_types_)) { | 275 | 25 | std::visit( | 276 | 25 | [&](auto result_is_nullable) { | 277 | 25 | if (attr.enable_aggregate_function_null_v2) { | 278 | 25 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 25 | AggregateFunctionTemplate>( | 280 | 25 | result.release(), argument_types_, attr.is_window_function)); | 281 | 25 | } else { | 282 | 25 | result.reset(new NullableT<false, result_is_nullable, | 283 | 25 | AggregateFunctionTemplate>( | 284 | 25 | result.release(), argument_types_, attr.is_window_function)); | 285 | 25 | } | 286 | 25 | }, | 287 | 25 | make_bool_variant(result_is_nullable)); | 288 | 25 | } | 289 | 33 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 33 | return AggregateFunctionPtr(result.release()); | 291 | 33 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE5ENS_32AggregateFunctionGroupBitXorDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 456 | TArgs&&... args) { | 268 | 456 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 456 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 456 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 456 | if (have_nullable(argument_types_)) { | 275 | 443 | std::visit( | 276 | 443 | [&](auto result_is_nullable) { | 277 | 443 | if (attr.enable_aggregate_function_null_v2) { | 278 | 443 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 443 | AggregateFunctionTemplate>( | 280 | 443 | result.release(), argument_types_, attr.is_window_function)); | 281 | 443 | } else { | 282 | 443 | result.reset(new NullableT<false, result_is_nullable, | 283 | 443 | AggregateFunctionTemplate>( | 284 | 443 | result.release(), argument_types_, attr.is_window_function)); | 285 | 443 | } | 286 | 443 | }, | 287 | 443 | make_bool_variant(result_is_nullable)); | 288 | 443 | } | 289 | 456 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 456 | return AggregateFunctionPtr(result.release()); | 291 | 456 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE6ENS_32AggregateFunctionGroupBitXorDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 35 | TArgs&&... args) { | 268 | 35 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 35 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 35 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 35 | if (have_nullable(argument_types_)) { | 275 | 26 | std::visit( | 276 | 26 | [&](auto result_is_nullable) { | 277 | 26 | if (attr.enable_aggregate_function_null_v2) { | 278 | 26 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 26 | AggregateFunctionTemplate>( | 280 | 26 | result.release(), argument_types_, attr.is_window_function)); | 281 | 26 | } else { | 282 | 26 | result.reset(new NullableT<false, result_is_nullable, | 283 | 26 | AggregateFunctionTemplate>( | 284 | 26 | result.release(), argument_types_, attr.is_window_function)); | 285 | 26 | } | 286 | 26 | }, | 287 | 26 | make_bool_variant(result_is_nullable)); | 288 | 26 | } | 289 | 35 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 35 | return AggregateFunctionPtr(result.release()); | 291 | 35 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE7ENS_32AggregateFunctionGroupBitXorDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 35 | TArgs&&... args) { | 268 | 35 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 35 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 35 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 35 | if (have_nullable(argument_types_)) { | 275 | 27 | std::visit( | 276 | 27 | [&](auto result_is_nullable) { | 277 | 27 | if (attr.enable_aggregate_function_null_v2) { | 278 | 27 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 27 | AggregateFunctionTemplate>( | 280 | 27 | result.release(), argument_types_, attr.is_window_function)); | 281 | 27 | } else { | 282 | 27 | result.reset(new NullableT<false, result_is_nullable, | 283 | 27 | AggregateFunctionTemplate>( | 284 | 27 | result.release(), argument_types_, attr.is_window_function)); | 285 | 27 | } | 286 | 27 | }, | 287 | 27 | make_bool_variant(result_is_nullable)); | 288 | 27 | } | 289 | 35 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 35 | return AggregateFunctionPtr(result.release()); | 291 | 35 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.47k | TArgs&&... args) { | 268 | 2.47k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 2.47k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.47k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.47k | if (have_nullable(argument_types_)) { | 275 | 17 | std::visit( | 276 | 17 | [&](auto result_is_nullable) { | 277 | 17 | if (attr.enable_aggregate_function_null_v2) { | 278 | 17 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 17 | AggregateFunctionTemplate>( | 280 | 17 | result.release(), argument_types_, attr.is_window_function)); | 281 | 17 | } else { | 282 | 17 | result.reset(new NullableT<false, result_is_nullable, | 283 | 17 | AggregateFunctionTemplate>( | 284 | 17 | result.release(), argument_types_, attr.is_window_function)); | 285 | 17 | } | 286 | 17 | }, | 287 | 17 | make_bool_variant(result_is_nullable)); | 288 | 17 | } | 289 | 2.47k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.47k | return AggregateFunctionPtr(result.release()); | 291 | 2.47k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_34AggregateFunctionBitmapIntersectOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.19k | TArgs&&... args) { | 268 | 1.19k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.19k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.19k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.19k | if (have_nullable(argument_types_)) { | 275 | 5 | std::visit( | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 5 | result.reset(new NullableT<false, result_is_nullable, | 283 | 5 | AggregateFunctionTemplate>( | 284 | 5 | result.release(), argument_types_, attr.is_window_function)); | 285 | 5 | } | 286 | 5 | }, | 287 | 5 | make_bool_variant(result_is_nullable)); | 288 | 5 | } | 289 | 1.19k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.19k | return AggregateFunctionPtr(result.release()); | 291 | 1.19k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionBitmapOpINS_33AggregateFunctionGroupBitmapXorOpEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 443 | TArgs&&... args) { | 268 | 443 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 443 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 443 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 443 | if (have_nullable(argument_types_)) { | 275 | 2 | std::visit( | 276 | 2 | [&](auto result_is_nullable) { | 277 | 2 | if (attr.enable_aggregate_function_null_v2) { | 278 | 2 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2 | AggregateFunctionTemplate>( | 280 | 2 | result.release(), argument_types_, attr.is_window_function)); | 281 | 2 | } else { | 282 | 2 | result.reset(new NullableT<false, result_is_nullable, | 283 | 2 | AggregateFunctionTemplate>( | 284 | 2 | result.release(), argument_types_, attr.is_window_function)); | 285 | 2 | } | 286 | 2 | }, | 287 | 2 | make_bool_variant(result_is_nullable)); | 288 | 2 | } | 289 | 443 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 443 | return AggregateFunctionPtr(result.release()); | 291 | 443 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_3ENS_24AggregateFunctionSumDataILS3_3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 921 | TArgs&&... args) { | 268 | 921 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 921 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 921 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 921 | if (have_nullable(argument_types_)) { | 275 | 474 | std::visit( | 276 | 474 | [&](auto result_is_nullable) { | 277 | 474 | if (attr.enable_aggregate_function_null_v2) { | 278 | 474 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 474 | AggregateFunctionTemplate>( | 280 | 474 | result.release(), argument_types_, attr.is_window_function)); | 281 | 474 | } else { | 282 | 474 | result.reset(new NullableT<false, result_is_nullable, | 283 | 474 | AggregateFunctionTemplate>( | 284 | 474 | result.release(), argument_types_, attr.is_window_function)); | 285 | 474 | } | 286 | 474 | }, | 287 | 474 | make_bool_variant(result_is_nullable)); | 288 | 474 | } | 289 | 921 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 921 | return AggregateFunctionPtr(result.release()); | 291 | 921 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE4ELS3_4ENS_24AggregateFunctionSumDataILS3_4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 981 | TArgs&&... args) { | 268 | 981 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 981 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 981 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 981 | if (have_nullable(argument_types_)) { | 275 | 532 | std::visit( | 276 | 532 | [&](auto result_is_nullable) { | 277 | 532 | if (attr.enable_aggregate_function_null_v2) { | 278 | 532 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 532 | AggregateFunctionTemplate>( | 280 | 532 | result.release(), argument_types_, attr.is_window_function)); | 281 | 532 | } else { | 282 | 532 | result.reset(new NullableT<false, result_is_nullable, | 283 | 532 | AggregateFunctionTemplate>( | 284 | 532 | result.release(), argument_types_, attr.is_window_function)); | 285 | 532 | } | 286 | 532 | }, | 287 | 532 | make_bool_variant(result_is_nullable)); | 288 | 532 | } | 289 | 981 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 981 | return AggregateFunctionPtr(result.release()); | 291 | 981 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.19k | TArgs&&... args) { | 268 | 1.19k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.19k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.19k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.19k | if (have_nullable(argument_types_)) { | 275 | 617 | std::visit( | 276 | 617 | [&](auto result_is_nullable) { | 277 | 617 | if (attr.enable_aggregate_function_null_v2) { | 278 | 617 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 617 | AggregateFunctionTemplate>( | 280 | 617 | result.release(), argument_types_, attr.is_window_function)); | 281 | 617 | } else { | 282 | 617 | result.reset(new NullableT<false, result_is_nullable, | 283 | 617 | AggregateFunctionTemplate>( | 284 | 617 | result.release(), argument_types_, attr.is_window_function)); | 285 | 617 | } | 286 | 617 | }, | 287 | 617 | make_bool_variant(result_is_nullable)); | 288 | 617 | } | 289 | 1.19k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.19k | return AggregateFunctionPtr(result.release()); | 291 | 1.19k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.45k | TArgs&&... args) { | 268 | 1.45k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.45k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.45k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.45k | if (have_nullable(argument_types_)) { | 275 | 598 | std::visit( | 276 | 598 | [&](auto result_is_nullable) { | 277 | 598 | if (attr.enable_aggregate_function_null_v2) { | 278 | 598 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 598 | AggregateFunctionTemplate>( | 280 | 598 | result.release(), argument_types_, attr.is_window_function)); | 281 | 598 | } else { | 282 | 598 | result.reset(new NullableT<false, result_is_nullable, | 283 | 598 | AggregateFunctionTemplate>( | 284 | 598 | result.release(), argument_types_, attr.is_window_function)); | 285 | 598 | } | 286 | 598 | }, | 287 | 598 | make_bool_variant(result_is_nullable)); | 288 | 598 | } | 289 | 1.45k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.45k | return AggregateFunctionPtr(result.release()); | 291 | 1.45k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.37k | TArgs&&... args) { | 268 | 1.37k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.37k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.37k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.37k | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 1.37k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.37k | return AggregateFunctionPtr(result.release()); | 291 | 1.37k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_19WindowFunctionNTileEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS3_IKNS_9IDataTypeEESaIS9_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 15 | TArgs&&... args) { | 268 | 15 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 15 | if (have_nullable(argument_types_)) { | 275 | 0 | std::visit( | 276 | 0 | [&](auto result_is_nullable) { | 277 | 0 | if (attr.enable_aggregate_function_null_v2) { | 278 | 0 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 0 | AggregateFunctionTemplate>( | 280 | 0 | result.release(), argument_types_, attr.is_window_function)); | 281 | 0 | } else { | 282 | 0 | result.reset(new NullableT<false, result_is_nullable, | 283 | 0 | AggregateFunctionTemplate>( | 284 | 0 | result.release(), argument_types_, attr.is_window_function)); | 285 | 0 | } | 286 | 0 | }, | 287 | 0 | make_bool_variant(result_is_nullable)); | 288 | 0 | } | 289 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 15 | return AggregateFunctionPtr(result.release()); | 291 | 15 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE3ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 50 | TArgs&&... args) { | 268 | 50 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 50 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 50 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 50 | if (have_nullable(argument_types_)) { | 275 | 50 | std::visit( | 276 | 50 | [&](auto result_is_nullable) { | 277 | 50 | if (attr.enable_aggregate_function_null_v2) { | 278 | 50 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 50 | AggregateFunctionTemplate>( | 280 | 50 | result.release(), argument_types_, attr.is_window_function)); | 281 | 50 | } else { | 282 | 50 | result.reset(new NullableT<false, result_is_nullable, | 283 | 50 | AggregateFunctionTemplate>( | 284 | 50 | result.release(), argument_types_, attr.is_window_function)); | 285 | 50 | } | 286 | 50 | }, | 287 | 50 | make_bool_variant(result_is_nullable)); | 288 | 50 | } | 289 | 50 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 50 | return AggregateFunctionPtr(result.release()); | 291 | 50 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE4ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 38 | TArgs&&... args) { | 268 | 38 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 38 | if (have_nullable(argument_types_)) { | 275 | 38 | std::visit( | 276 | 38 | [&](auto result_is_nullable) { | 277 | 38 | if (attr.enable_aggregate_function_null_v2) { | 278 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 38 | AggregateFunctionTemplate>( | 280 | 38 | result.release(), argument_types_, attr.is_window_function)); | 281 | 38 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 38 | }, | 287 | 38 | make_bool_variant(result_is_nullable)); | 288 | 38 | } | 289 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 38 | return AggregateFunctionPtr(result.release()); | 291 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE5ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 46 | TArgs&&... args) { | 268 | 46 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 46 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 46 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 46 | if (have_nullable(argument_types_)) { | 275 | 46 | std::visit( | 276 | 46 | [&](auto result_is_nullable) { | 277 | 46 | if (attr.enable_aggregate_function_null_v2) { | 278 | 46 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 46 | AggregateFunctionTemplate>( | 280 | 46 | result.release(), argument_types_, attr.is_window_function)); | 281 | 46 | } else { | 282 | 46 | result.reset(new NullableT<false, result_is_nullable, | 283 | 46 | AggregateFunctionTemplate>( | 284 | 46 | result.release(), argument_types_, attr.is_window_function)); | 285 | 46 | } | 286 | 46 | }, | 287 | 46 | make_bool_variant(result_is_nullable)); | 288 | 46 | } | 289 | 46 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 46 | return AggregateFunctionPtr(result.release()); | 291 | 46 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 38 | TArgs&&... args) { | 268 | 38 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 38 | if (have_nullable(argument_types_)) { | 275 | 38 | std::visit( | 276 | 38 | [&](auto result_is_nullable) { | 277 | 38 | if (attr.enable_aggregate_function_null_v2) { | 278 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 38 | AggregateFunctionTemplate>( | 280 | 38 | result.release(), argument_types_, attr.is_window_function)); | 281 | 38 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 38 | }, | 287 | 38 | make_bool_variant(result_is_nullable)); | 288 | 38 | } | 289 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 38 | return AggregateFunctionPtr(result.release()); | 291 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE7ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 38 | TArgs&&... args) { | 268 | 38 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 38 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 38 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 38 | if (have_nullable(argument_types_)) { | 275 | 38 | std::visit( | 276 | 38 | [&](auto result_is_nullable) { | 277 | 38 | if (attr.enable_aggregate_function_null_v2) { | 278 | 38 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 38 | AggregateFunctionTemplate>( | 280 | 38 | result.release(), argument_types_, attr.is_window_function)); | 281 | 38 | } else { | 282 | 38 | result.reset(new NullableT<false, result_is_nullable, | 283 | 38 | AggregateFunctionTemplate>( | 284 | 38 | result.release(), argument_types_, attr.is_window_function)); | 285 | 38 | } | 286 | 38 | }, | 287 | 38 | make_bool_variant(result_is_nullable)); | 288 | 38 | } | 289 | 38 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 38 | return AggregateFunctionPtr(result.release()); | 291 | 38 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE8ELS3_9ENS_24AggregateFunctionAvgDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 42 | TArgs&&... args) { | 268 | 42 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 42 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 42 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 42 | if (have_nullable(argument_types_)) { | 275 | 42 | std::visit( | 276 | 42 | [&](auto result_is_nullable) { | 277 | 42 | if (attr.enable_aggregate_function_null_v2) { | 278 | 42 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 42 | AggregateFunctionTemplate>( | 280 | 42 | result.release(), argument_types_, attr.is_window_function)); | 281 | 42 | } else { | 282 | 42 | result.reset(new NullableT<false, result_is_nullable, | 283 | 42 | AggregateFunctionTemplate>( | 284 | 42 | result.release(), argument_types_, attr.is_window_function)); | 285 | 42 | } | 286 | 42 | }, | 287 | 42 | make_bool_variant(result_is_nullable)); | 288 | 42 | } | 289 | 42 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 42 | return AggregateFunctionPtr(result.release()); | 291 | 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 | 267 | 22 | TArgs&&... args) { | 268 | 22 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 22 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 22 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 22 | if (have_nullable(argument_types_)) { | 275 | 22 | std::visit( | 276 | 22 | [&](auto result_is_nullable) { | 277 | 22 | if (attr.enable_aggregate_function_null_v2) { | 278 | 22 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 22 | AggregateFunctionTemplate>( | 280 | 22 | result.release(), argument_types_, attr.is_window_function)); | 281 | 22 | } else { | 282 | 22 | result.reset(new NullableT<false, result_is_nullable, | 283 | 22 | AggregateFunctionTemplate>( | 284 | 22 | result.release(), argument_types_, attr.is_window_function)); | 285 | 22 | } | 286 | 22 | }, | 287 | 22 | make_bool_variant(result_is_nullable)); | 288 | 22 | } | 289 | 22 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 22 | return AggregateFunctionPtr(result.release()); | 291 | 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 | 267 | 47 | TArgs&&... args) { | 268 | 47 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 47 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 47 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 47 | if (have_nullable(argument_types_)) { | 275 | 47 | std::visit( | 276 | 47 | [&](auto result_is_nullable) { | 277 | 47 | if (attr.enable_aggregate_function_null_v2) { | 278 | 47 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 47 | AggregateFunctionTemplate>( | 280 | 47 | result.release(), argument_types_, attr.is_window_function)); | 281 | 47 | } else { | 282 | 47 | result.reset(new NullableT<false, result_is_nullable, | 283 | 47 | AggregateFunctionTemplate>( | 284 | 47 | result.release(), argument_types_, attr.is_window_function)); | 285 | 47 | } | 286 | 47 | }, | 287 | 47 | make_bool_variant(result_is_nullable)); | 288 | 47 | } | 289 | 47 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 47 | return AggregateFunctionPtr(result.release()); | 291 | 47 | } |
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 | 267 | 24 | TArgs&&... args) { | 268 | 24 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 24 | if (have_nullable(argument_types_)) { | 275 | 24 | std::visit( | 276 | 24 | [&](auto result_is_nullable) { | 277 | 24 | if (attr.enable_aggregate_function_null_v2) { | 278 | 24 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 24 | AggregateFunctionTemplate>( | 280 | 24 | result.release(), argument_types_, attr.is_window_function)); | 281 | 24 | } else { | 282 | 24 | result.reset(new NullableT<false, result_is_nullable, | 283 | 24 | AggregateFunctionTemplate>( | 284 | 24 | result.release(), argument_types_, attr.is_window_function)); | 285 | 24 | } | 286 | 24 | }, | 287 | 24 | make_bool_variant(result_is_nullable)); | 288 | 24 | } | 289 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 24 | return AggregateFunctionPtr(result.release()); | 291 | 24 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE6ELS3_6ENS_28AggregateFunctionProductDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 16 | TArgs&&... args) { | 268 | 16 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 16 | if (have_nullable(argument_types_)) { | 275 | 16 | std::visit( | 276 | 16 | [&](auto result_is_nullable) { | 277 | 16 | if (attr.enable_aggregate_function_null_v2) { | 278 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 16 | AggregateFunctionTemplate>( | 280 | 16 | result.release(), argument_types_, attr.is_window_function)); | 281 | 16 | } else { | 282 | 16 | result.reset(new NullableT<false, result_is_nullable, | 283 | 16 | AggregateFunctionTemplate>( | 284 | 16 | result.release(), argument_types_, attr.is_window_function)); | 285 | 16 | } | 286 | 16 | }, | 287 | 16 | make_bool_variant(result_is_nullable)); | 288 | 16 | } | 289 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 16 | return AggregateFunctionPtr(result.release()); | 291 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE7ELS3_7ENS_28AggregateFunctionProductDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 16 | TArgs&&... args) { | 268 | 16 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 16 | if (have_nullable(argument_types_)) { | 275 | 16 | std::visit( | 276 | 16 | [&](auto result_is_nullable) { | 277 | 16 | if (attr.enable_aggregate_function_null_v2) { | 278 | 16 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 16 | AggregateFunctionTemplate>( | 280 | 16 | result.release(), argument_types_, attr.is_window_function)); | 281 | 16 | } else { | 282 | 16 | result.reset(new NullableT<false, result_is_nullable, | 283 | 16 | AggregateFunctionTemplate>( | 284 | 16 | result.release(), argument_types_, attr.is_window_function)); | 285 | 16 | } | 286 | 16 | }, | 287 | 16 | make_bool_variant(result_is_nullable)); | 288 | 16 | } | 289 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 16 | return AggregateFunctionPtr(result.release()); | 291 | 16 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE8ELS3_8ENS_28AggregateFunctionProductDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 40 | TArgs&&... args) { | 268 | 40 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 40 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 40 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 40 | if (have_nullable(argument_types_)) { | 275 | 40 | std::visit( | 276 | 40 | [&](auto result_is_nullable) { | 277 | 40 | if (attr.enable_aggregate_function_null_v2) { | 278 | 40 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 40 | AggregateFunctionTemplate>( | 280 | 40 | result.release(), argument_types_, attr.is_window_function)); | 281 | 40 | } else { | 282 | 40 | result.reset(new NullableT<false, result_is_nullable, | 283 | 40 | AggregateFunctionTemplate>( | 284 | 40 | result.release(), argument_types_, attr.is_window_function)); | 285 | 40 | } | 286 | 40 | }, | 287 | 40 | make_bool_variant(result_is_nullable)); | 288 | 40 | } | 289 | 40 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 40 | return AggregateFunctionPtr(result.release()); | 291 | 40 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionProductILNS_13PrimitiveTypeE9ELS3_9ENS_28AggregateFunctionProductDataILS3_9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 125 | TArgs&&... args) { | 268 | 125 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 125 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 125 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 125 | if (have_nullable(argument_types_)) { | 275 | 125 | std::visit( | 276 | 125 | [&](auto result_is_nullable) { | 277 | 125 | if (attr.enable_aggregate_function_null_v2) { | 278 | 125 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 125 | AggregateFunctionTemplate>( | 280 | 125 | result.release(), argument_types_, attr.is_window_function)); | 281 | 125 | } else { | 282 | 125 | result.reset(new NullableT<false, result_is_nullable, | 283 | 125 | AggregateFunctionTemplate>( | 284 | 125 | result.release(), argument_types_, attr.is_window_function)); | 285 | 125 | } | 286 | 125 | }, | 287 | 125 | make_bool_variant(result_is_nullable)); | 288 | 125 | } | 289 | 125 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 125 | return AggregateFunctionPtr(result.release()); | 291 | 125 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_16VarianceSampNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.06k | TArgs&&... args) { | 268 | 1.06k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.06k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.06k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.06k | if (have_nullable(argument_types_)) { | 275 | 1.00k | std::visit( | 276 | 1.00k | [&](auto result_is_nullable) { | 277 | 1.00k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.00k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.00k | AggregateFunctionTemplate>( | 280 | 1.00k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.00k | } else { | 282 | 1.00k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.00k | AggregateFunctionTemplate>( | 284 | 1.00k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.00k | } | 286 | 1.00k | }, | 287 | 1.00k | make_bool_variant(result_is_nullable)); | 288 | 1.00k | } | 289 | 1.06k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.06k | return AggregateFunctionPtr(result.release()); | 291 | 1.06k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_12VarianceNameELb0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.13k | TArgs&&... args) { | 268 | 1.13k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.13k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.13k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.13k | if (have_nullable(argument_types_)) { | 275 | 1.07k | std::visit( | 276 | 1.07k | [&](auto result_is_nullable) { | 277 | 1.07k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.07k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.07k | AggregateFunctionTemplate>( | 280 | 1.07k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.07k | } else { | 282 | 1.07k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.07k | AggregateFunctionTemplate>( | 284 | 1.07k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.07k | } | 286 | 1.07k | }, | 287 | 1.07k | make_bool_variant(result_is_nullable)); | 288 | 1.07k | } | 289 | 1.13k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.13k | return AggregateFunctionPtr(result.release()); | 291 | 1.13k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_7PopDataILNS_13PrimitiveTypeE9ENS_10StddevNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.08k | TArgs&&... args) { | 268 | 1.08k | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 1.08k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.08k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.08k | if (have_nullable(argument_types_)) { | 275 | 1.02k | std::visit( | 276 | 1.02k | [&](auto result_is_nullable) { | 277 | 1.02k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.02k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.02k | AggregateFunctionTemplate>( | 280 | 1.02k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.02k | } else { | 282 | 1.02k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.02k | AggregateFunctionTemplate>( | 284 | 1.02k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.02k | } | 286 | 1.02k | }, | 287 | 1.02k | make_bool_variant(result_is_nullable)); | 288 | 1.02k | } | 289 | 1.08k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.08k | return AggregateFunctionPtr(result.release()); | 291 | 1.08k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 613 | TArgs&&... args) { | 268 | 613 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 613 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 613 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 613 | if (have_nullable(argument_types_)) { | 275 | 555 | std::visit( | 276 | 555 | [&](auto result_is_nullable) { | 277 | 555 | if (attr.enable_aggregate_function_null_v2) { | 278 | 555 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 555 | AggregateFunctionTemplate>( | 280 | 555 | result.release(), argument_types_, attr.is_window_function)); | 281 | 555 | } else { | 282 | 555 | result.reset(new NullableT<false, result_is_nullable, | 283 | 555 | AggregateFunctionTemplate>( | 284 | 555 | result.release(), argument_types_, attr.is_window_function)); | 285 | 555 | } | 286 | 555 | }, | 287 | 555 | make_bool_variant(result_is_nullable)); | 288 | 555 | } | 289 | 613 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 613 | return AggregateFunctionPtr(result.release()); | 291 | 613 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 604 | TArgs&&... args) { | 268 | 604 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 604 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 604 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 604 | if (have_nullable(argument_types_)) { | 275 | 82 | std::visit( | 276 | 82 | [&](auto result_is_nullable) { | 277 | 82 | if (attr.enable_aggregate_function_null_v2) { | 278 | 82 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 82 | AggregateFunctionTemplate>( | 280 | 82 | result.release(), argument_types_, attr.is_window_function)); | 281 | 82 | } else { | 282 | 82 | result.reset(new NullableT<false, result_is_nullable, | 283 | 82 | AggregateFunctionTemplate>( | 284 | 82 | result.release(), argument_types_, attr.is_window_function)); | 285 | 82 | } | 286 | 82 | }, | 287 | 82 | make_bool_variant(result_is_nullable)); | 288 | 82 | } | 289 | 604 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 604 | return AggregateFunctionPtr(result.release()); | 291 | 604 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_31AggregateFunctionGroupBitOrDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 7 | TArgs&&... args) { | 268 | 7 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 7 | if (have_nullable(argument_types_)) { | 275 | 5 | std::visit( | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 5 | result.reset(new NullableT<false, result_is_nullable, | 283 | 5 | AggregateFunctionTemplate>( | 284 | 5 | result.release(), argument_types_, attr.is_window_function)); | 285 | 5 | } | 286 | 5 | }, | 287 | 5 | make_bool_variant(result_is_nullable)); | 288 | 5 | } | 289 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 7 | return AggregateFunctionPtr(result.release()); | 291 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_24AggregateFunctionBitwiseILNS_13PrimitiveTypeE2ENS_32AggregateFunctionGroupBitAndDataILS3_2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 8 | TArgs&&... args) { | 268 | 8 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 8 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 8 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 8 | if (have_nullable(argument_types_)) { | 275 | 6 | std::visit( | 276 | 6 | [&](auto result_is_nullable) { | 277 | 6 | if (attr.enable_aggregate_function_null_v2) { | 278 | 6 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 6 | AggregateFunctionTemplate>( | 280 | 6 | result.release(), argument_types_, attr.is_window_function)); | 281 | 6 | } else { | 282 | 6 | result.reset(new NullableT<false, result_is_nullable, | 283 | 6 | AggregateFunctionTemplate>( | 284 | 6 | result.release(), argument_types_, attr.is_window_function)); | 285 | 6 | } | 286 | 6 | }, | 287 | 6 | make_bool_variant(result_is_nullable)); | 288 | 6 | } | 289 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 8 | return AggregateFunctionPtr(result.release()); | 291 | 8 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFuntionBoolUnionINS_28AggregateFunctionBoolXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 7 | TArgs&&... args) { | 268 | 7 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 7 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 7 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 7 | if (have_nullable(argument_types_)) { | 275 | 5 | std::visit( | 276 | 5 | [&](auto result_is_nullable) { | 277 | 5 | if (attr.enable_aggregate_function_null_v2) { | 278 | 5 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 5 | AggregateFunctionTemplate>( | 280 | 5 | result.release(), argument_types_, attr.is_window_function)); | 281 | 5 | } else { | 282 | 5 | result.reset(new NullableT<false, result_is_nullable, | 283 | 5 | AggregateFunctionTemplate>( | 284 | 5 | result.release(), argument_types_, attr.is_window_function)); | 285 | 5 | } | 286 | 5 | }, | 287 | 5 | make_bool_variant(result_is_nullable)); | 288 | 5 | } | 289 | 7 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 7 | return AggregateFunctionPtr(result.release()); | 291 | 7 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSemINS_24AggregateFunctionSemDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 24 | TArgs&&... args) { | 268 | 24 | if (!(argument_types_.size() == 1)) { | 269 | 0 | throw doris::Exception(Status::InternalError( | 270 | 0 | "create_unary_arguments: argument_types_ size must be 1")); | 271 | 0 | } | 272 | 24 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 24 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 24 | if (have_nullable(argument_types_)) { | 275 | 21 | std::visit( | 276 | 21 | [&](auto result_is_nullable) { | 277 | 21 | if (attr.enable_aggregate_function_null_v2) { | 278 | 21 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 21 | AggregateFunctionTemplate>( | 280 | 21 | result.release(), argument_types_, attr.is_window_function)); | 281 | 21 | } else { | 282 | 21 | result.reset(new NullableT<false, result_is_nullable, | 283 | 21 | AggregateFunctionTemplate>( | 284 | 21 | result.release(), argument_types_, attr.is_window_function)); | 285 | 21 | } | 286 | 21 | }, | 287 | 21 | make_bool_variant(result_is_nullable)); | 288 | 21 | } | 289 | 24 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 24 | return AggregateFunctionPtr(result.release()); | 291 | 24 | } |
|
292 | | |
293 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
294 | | static AggregateFunctionPtr create_unary_arguments_return_not_nullable( |
295 | | const DataTypes& argument_types_, const bool result_is_nullable, |
296 | 32.4k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
297 | 32.4k | if (!(argument_types_.size() == 1)) { |
298 | 0 | throw doris::Exception(Status::InternalError( |
299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); |
300 | 0 | } |
301 | 32.4k | if (!attr.is_foreach && result_is_nullable) { |
302 | 0 | throw doris::Exception( |
303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " |
304 | 0 | "result_is_nullable must be false")); |
305 | 0 | } |
306 | 32.4k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
307 | 32.4k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
308 | 32.4k | if (have_nullable(argument_types_)) { |
309 | 19.1k | if (attr.enable_aggregate_function_null_v2) { |
310 | 18.0k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
311 | 18.0k | result.release(), argument_types_, attr.is_window_function)); |
312 | 18.0k | } else { |
313 | 1.13k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
314 | 1.13k | result.release(), argument_types_, attr.is_window_function)); |
315 | 1.13k | } |
316 | 19.1k | } |
317 | 32.4k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
318 | 32.4k | return AggregateFunctionPtr(result.release()); |
319 | 32.4k | } 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 | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 444 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 444 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 444 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 444 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 444 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 444 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 444 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 444 | return AggregateFunctionPtr(result.release()); | 319 | 444 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 4 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4 | return AggregateFunctionPtr(result.release()); | 319 | 4 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 6 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 6 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 6 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 6 | return AggregateFunctionPtr(result.release()); | 319 | 6 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 6 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 6 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 6 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 6 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 6 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 6 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 6 | return AggregateFunctionPtr(result.release()); | 319 | 6 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_30GroupArrayNumericIntersectDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 18 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 18 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 18 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 18 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 18 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 18 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 18 | return AggregateFunctionPtr(result.release()); | 319 | 18 | } |
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 | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
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_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 | 296 | 15 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 15 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 15 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 15 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 15 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 15 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 15 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 15 | return AggregateFunctionPtr(result.release()); | 319 | 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 | 296 | 23 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 23 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 23 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 23 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 23 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 23 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 23 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 23 | return AggregateFunctionPtr(result.release()); | 319 | 23 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 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_13PrimitiveTypeE25EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 4 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4 | return AggregateFunctionPtr(result.release()); | 319 | 4 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 4 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 4 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4 | return AggregateFunctionPtr(result.release()); | 319 | 4 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_32AggregateFunctionGroupArraySetOpINS_26GroupArrayNumericUnionDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_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 | 296 | 16 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 16 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 16 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 16 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 16 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 16 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 16 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 16 | return AggregateFunctionPtr(result.release()); | 319 | 16 | } |
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 | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
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_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 | 296 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 12 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 12 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 12 | if (have_nullable(argument_types_)) { | 309 | 0 | if (attr.enable_aggregate_function_null_v2) { | 310 | 0 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 0 | result.release(), argument_types_, attr.is_window_function)); | 312 | 0 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 0 | } | 317 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 12 | return AggregateFunctionPtr(result.release()); | 319 | 12 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 106 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 106 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 106 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 106 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 106 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 106 | if (have_nullable(argument_types_)) { | 309 | 104 | if (attr.enable_aggregate_function_null_v2) { | 310 | 104 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 104 | result.release(), argument_types_, attr.is_window_function)); | 312 | 104 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 104 | } | 317 | 106 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 106 | return AggregateFunctionPtr(result.release()); | 319 | 106 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 309 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 309 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 309 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 309 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 309 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 309 | if (have_nullable(argument_types_)) { | 309 | 209 | if (attr.enable_aggregate_function_null_v2) { | 310 | 209 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 209 | result.release(), argument_types_, attr.is_window_function)); | 312 | 209 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 209 | } | 317 | 309 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 309 | return AggregateFunctionPtr(result.release()); | 319 | 309 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 324 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 324 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 324 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 324 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 324 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 324 | if (have_nullable(argument_types_)) { | 309 | 213 | if (attr.enable_aggregate_function_null_v2) { | 310 | 213 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 213 | result.release(), argument_types_, attr.is_window_function)); | 312 | 213 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 213 | } | 317 | 324 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 324 | return AggregateFunctionPtr(result.release()); | 319 | 324 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 12.7k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 12.7k | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 12.7k | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 12.7k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 12.7k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 12.7k | if (have_nullable(argument_types_)) { | 309 | 8.72k | if (attr.enable_aggregate_function_null_v2) { | 310 | 7.59k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 7.59k | result.release(), argument_types_, attr.is_window_function)); | 312 | 7.59k | } else { | 313 | 1.13k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 1.13k | result.release(), argument_types_, attr.is_window_function)); | 315 | 1.13k | } | 316 | 8.72k | } | 317 | 12.7k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 12.7k | return AggregateFunctionPtr(result.release()); | 319 | 12.7k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4.02k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4.02k | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 4.02k | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 4.02k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4.02k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4.02k | if (have_nullable(argument_types_)) { | 309 | 2.33k | if (attr.enable_aggregate_function_null_v2) { | 310 | 2.33k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 2.33k | result.release(), argument_types_, attr.is_window_function)); | 312 | 18.4E | } else { | 313 | 18.4E | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 18.4E | result.release(), argument_types_, attr.is_window_function)); | 315 | 18.4E | } | 316 | 2.33k | } | 317 | 4.02k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4.02k | return AggregateFunctionPtr(result.release()); | 319 | 4.02k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 234 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 234 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 234 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 234 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 234 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 234 | if (have_nullable(argument_types_)) { | 309 | 103 | if (attr.enable_aggregate_function_null_v2) { | 310 | 103 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 103 | result.release(), argument_types_, attr.is_window_function)); | 312 | 103 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 103 | } | 317 | 234 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 234 | return AggregateFunctionPtr(result.release()); | 319 | 234 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 132 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 132 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 132 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 132 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 132 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 132 | if (have_nullable(argument_types_)) { | 309 | 132 | if (attr.enable_aggregate_function_null_v2) { | 310 | 132 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 132 | result.release(), argument_types_, attr.is_window_function)); | 312 | 132 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 132 | } | 317 | 132 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 132 | return AggregateFunctionPtr(result.release()); | 319 | 132 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 164 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 164 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 164 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 164 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 164 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 164 | if (have_nullable(argument_types_)) { | 309 | 152 | if (attr.enable_aggregate_function_null_v2) { | 310 | 152 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 152 | result.release(), argument_types_, attr.is_window_function)); | 312 | 152 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 152 | } | 317 | 164 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 164 | return AggregateFunctionPtr(result.release()); | 319 | 164 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 2 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 2 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 2 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 2 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 2 | if (have_nullable(argument_types_)) { | 309 | 2 | if (attr.enable_aggregate_function_null_v2) { | 310 | 2 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 2 | result.release(), argument_types_, attr.is_window_function)); | 312 | 2 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 2 | } | 317 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 2 | return AggregateFunctionPtr(result.release()); | 319 | 2 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 40 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 40 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 40 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 40 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 40 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 40 | if (have_nullable(argument_types_)) { | 309 | 40 | if (attr.enable_aggregate_function_null_v2) { | 310 | 40 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 40 | result.release(), argument_types_, attr.is_window_function)); | 312 | 40 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 40 | } | 317 | 40 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 40 | return AggregateFunctionPtr(result.release()); | 319 | 40 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 1.95k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 1.95k | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 1.96k | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 1.95k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 1.95k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 1.95k | if (have_nullable(argument_types_)) { | 309 | 1.18k | if (attr.enable_aggregate_function_null_v2) { | 310 | 1.18k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 1.18k | result.release(), argument_types_, attr.is_window_function)); | 312 | 1.18k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 1.18k | } | 317 | 1.95k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 1.95k | return AggregateFunctionPtr(result.release()); | 319 | 1.95k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 708 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 708 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 708 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 708 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 708 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 708 | if (have_nullable(argument_types_)) { | 309 | 552 | if (attr.enable_aggregate_function_null_v2) { | 310 | 552 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 552 | result.release(), argument_types_, attr.is_window_function)); | 312 | 552 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 552 | } | 317 | 708 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 708 | return AggregateFunctionPtr(result.release()); | 319 | 708 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 26 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 26 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 26 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 26 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 26 | if (have_nullable(argument_types_)) { | 309 | 26 | if (attr.enable_aggregate_function_null_v2) { | 310 | 26 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 26 | result.release(), argument_types_, attr.is_window_function)); | 312 | 26 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 26 | } | 317 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 26 | return AggregateFunctionPtr(result.release()); | 319 | 26 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 5.82k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 5.82k | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 5.82k | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 5.82k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 5.82k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 5.82k | if (have_nullable(argument_types_)) { | 309 | 3.54k | if (attr.enable_aggregate_function_null_v2) { | 310 | 3.54k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 3.54k | result.release(), argument_types_, attr.is_window_function)); | 312 | 3.54k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 3.54k | } | 317 | 5.82k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 5.82k | return AggregateFunctionPtr(result.release()); | 319 | 5.82k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE25EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4.68k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4.68k | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 4.68k | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 4.68k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4.68k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4.68k | if (have_nullable(argument_types_)) { | 309 | 1.42k | if (attr.enable_aggregate_function_null_v2) { | 310 | 1.42k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 1.42k | result.release(), argument_types_, attr.is_window_function)); | 312 | 1.42k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 1.42k | } | 317 | 4.68k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4.68k | return AggregateFunctionPtr(result.release()); | 319 | 4.68k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE26EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 628 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 628 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 628 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 628 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 628 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 628 | if (have_nullable(argument_types_)) { | 309 | 372 | if (attr.enable_aggregate_function_null_v2) { | 310 | 372 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 372 | result.release(), argument_types_, attr.is_window_function)); | 312 | 372 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 372 | } | 317 | 628 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 628 | return AggregateFunctionPtr(result.release()); | 319 | 628 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE36EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 12 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 12 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 12 | if (have_nullable(argument_types_)) { | 309 | 12 | if (attr.enable_aggregate_function_null_v2) { | 310 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 12 | result.release(), argument_types_, attr.is_window_function)); | 312 | 12 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 12 | } | 317 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 12 | return AggregateFunctionPtr(result.release()); | 319 | 12 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE37EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 12 | if (!(argument_types_.size() == 1)) { | 298 | 0 | throw doris::Exception(Status::InternalError( | 299 | 0 | "create_unary_arguments_return_not_nullable: argument_types_ size must be 1")); | 300 | 0 | } | 301 | 12 | if (!attr.is_foreach && result_is_nullable) { | 302 | 0 | throw doris::Exception( | 303 | 0 | Status::InternalError("create_unary_arguments_return_not_nullable: " | 304 | 0 | "result_is_nullable must be false")); | 305 | 0 | } | 306 | 12 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 12 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 12 | if (have_nullable(argument_types_)) { | 309 | 12 | if (attr.enable_aggregate_function_null_v2) { | 310 | 12 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 12 | result.release(), argument_types_, attr.is_window_function)); | 312 | 12 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 12 | } | 317 | 12 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 12 | return AggregateFunctionPtr(result.release()); | 319 | 12 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE42EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ |
320 | | |
321 | | /// AggregateFunctionTemplate will handle the nullable arguments, no need to use |
322 | | /// AggregateFunctionNullVariadicInline/AggregateFunctionNullUnaryInline |
323 | | template <typename AggregateFunctionTemplate, typename... TArgs> |
324 | | static AggregateFunctionPtr create_ignore_nullable(const DataTypes& argument_types_, |
325 | | const bool /*result_is_nullable*/, |
326 | | const AggregateFunctionAttr& /*attr*/, |
327 | 2.15k | TArgs&&... args) { |
328 | 2.15k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( |
329 | 2.15k | std::forward<TArgs>(args)..., argument_types_); |
330 | 2.15k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
331 | 2.15k | return AggregateFunctionPtr(result.release()); |
332 | 2.15k | } _ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 26 | TArgs&&... args) { | 328 | 26 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 26 | std::forward<TArgs>(args)..., argument_types_); | 330 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 26 | return AggregateFunctionPtr(result.release()); | 332 | 26 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 18 | TArgs&&... args) { | 328 | 18 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 18 | std::forward<TArgs>(args)..., argument_types_); | 330 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 18 | return AggregateFunctionPtr(result.release()); | 332 | 18 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 8 | TArgs&&... args) { | 328 | 8 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 8 | std::forward<TArgs>(args)..., argument_types_); | 330 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 8 | return AggregateFunctionPtr(result.release()); | 332 | 8 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_13RegrSlopeFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 11 | TArgs&&... args) { | 328 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 11 | std::forward<TArgs>(args)..., argument_types_); | 330 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 11 | return AggregateFunctionPtr(result.release()); | 332 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 26 | TArgs&&... args) { | 328 | 26 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 26 | std::forward<TArgs>(args)..., argument_types_); | 330 | 26 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 26 | return AggregateFunctionPtr(result.release()); | 332 | 26 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 18 | TArgs&&... args) { | 328 | 18 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 18 | std::forward<TArgs>(args)..., argument_types_); | 330 | 18 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 18 | return AggregateFunctionPtr(result.release()); | 332 | 18 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 8 | TArgs&&... args) { | 328 | 8 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 8 | std::forward<TArgs>(args)..., argument_types_); | 330 | 8 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 8 | return AggregateFunctionPtr(result.release()); | 332 | 8 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_17RegrInterceptFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 11 | TArgs&&... args) { | 328 | 11 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 11 | std::forward<TArgs>(args)..., argument_types_); | 330 | 11 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 11 | return AggregateFunctionPtr(result.release()); | 332 | 11 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 6 | TArgs&&... args) { | 328 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 6 | std::forward<TArgs>(args)..., argument_types_); | 330 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 6 | return AggregateFunctionPtr(result.release()); | 332 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxxFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 3 | TArgs&&... args) { | 328 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 3 | std::forward<TArgs>(args)..., argument_types_); | 330 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 3 | return AggregateFunctionPtr(result.release()); | 332 | 3 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 6 | TArgs&&... args) { | 328 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 6 | std::forward<TArgs>(args)..., argument_types_); | 330 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 6 | return AggregateFunctionPtr(result.release()); | 332 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSyyFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 3 | TArgs&&... args) { | 328 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 3 | std::forward<TArgs>(args)..., argument_types_); | 330 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 3 | return AggregateFunctionPtr(result.release()); | 332 | 3 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb1ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 6 | TArgs&&... args) { | 328 | 6 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 6 | std::forward<TArgs>(args)..., argument_types_); | 330 | 6 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 6 | return AggregateFunctionPtr(result.release()); | 332 | 6 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb1ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb0ELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_27AggregateFunctionRegrSimpleINS_11RegrSxyFuncILNS_13PrimitiveTypeE9EEELb0ELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 3 | TArgs&&... args) { | 328 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 3 | std::forward<TArgs>(args)..., argument_types_); | 330 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 3 | return AggregateFunctionPtr(result.release()); | 332 | 3 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE2EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE3EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE4EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 198 | TArgs&&... args) { | 328 | 198 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 198 | std::forward<TArgs>(args)..., argument_types_); | 330 | 198 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 198 | return AggregateFunctionPtr(result.release()); | 332 | 198 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE28EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE29EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 5 | TArgs&&... args) { | 328 | 5 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 5 | std::forward<TArgs>(args)..., argument_types_); | 330 | 5 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 5 | return AggregateFunctionPtr(result.release()); | 332 | 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 | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE35EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 3 | TArgs&&... args) { | 328 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 3 | std::forward<TArgs>(args)..., argument_types_); | 330 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 3 | return AggregateFunctionPtr(result.release()); | 332 | 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 | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE26EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 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 | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE37EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 4 | TArgs&&... args) { | 328 | 4 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 4 | std::forward<TArgs>(args)..., argument_types_); | 330 | 4 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 4 | return AggregateFunctionPtr(result.release()); | 332 | 4 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE23EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 455 | TArgs&&... args) { | 328 | 455 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 455 | std::forward<TArgs>(args)..., argument_types_); | 330 | 455 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 455 | return AggregateFunctionPtr(result.release()); | 332 | 455 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionArrayAggINS_29AggregateFunctionArrayAggDataILNS_13PrimitiveTypeE0EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 10 | TArgs&&... args) { | 328 | 10 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 10 | std::forward<TArgs>(args)..., argument_types_); | 330 | 10 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 10 | return AggregateFunctionPtr(result.release()); | 332 | 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 | 327 | 2 | TArgs&&... args) { | 328 | 2 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 2 | std::forward<TArgs>(args)..., argument_types_); | 330 | 2 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 2 | return AggregateFunctionPtr(result.release()); | 332 | 2 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_23AggregateFunctionMapAggINS_27AggregateFunctionMapAggDataILNS_13PrimitiveTypeE6EEELS4_6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 3 | TArgs&&... args) { | 328 | 3 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 3 | std::forward<TArgs>(args)..., argument_types_); | 330 | 3 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 3 | return AggregateFunctionPtr(result.release()); | 332 | 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 | 327 | 9 | TArgs&&... args) { | 328 | 9 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 9 | std::forward<TArgs>(args)..., argument_types_); | 330 | 9 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 9 | return AggregateFunctionPtr(result.release()); | 332 | 9 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_25AggregateFunctionMapAggV2INS_29AggregateFunctionMapAggDataV2EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 1.20k | TArgs&&... args) { | 328 | 1.20k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 1.20k | std::forward<TArgs>(args)..., argument_types_); | 330 | 1.20k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 1.20k | return AggregateFunctionPtr(result.release()); | 332 | 1.20k | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 13 | TArgs&&... args) { | 328 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 13 | std::forward<TArgs>(args)..., argument_types_); | 330 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 13 | return AggregateFunctionPtr(result.release()); | 332 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm3EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 13 | TArgs&&... args) { | 328 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 13 | std::forward<TArgs>(args)..., argument_types_); | 330 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 13 | return AggregateFunctionPtr(result.release()); | 332 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb1EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 13 | TArgs&&... args) { | 328 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 13 | std::forward<TArgs>(args)..., argument_types_); | 330 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 13 | return AggregateFunctionPtr(result.release()); | 332 | 13 | } |
_ZN5doris20creator_without_type22create_ignore_nullableINS_31AggregateFunctionVarianceSimpleINS_14StatFuncOneArgILNS_13PrimitiveTypeE9ELm4EEELb0EEEJNS_24STATISTICS_FUNCTION_KINDEEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 327 | 13 | TArgs&&... args) { | 328 | 13 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 13 | std::forward<TArgs>(args)..., argument_types_); | 330 | 13 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 13 | return AggregateFunctionPtr(result.release()); | 332 | 13 | } |
|
333 | | }; |
334 | | |
335 | | template <template <PrimitiveType> class AggregateFunctionTemplate> |
336 | | struct CurryDirect { |
337 | | template <PrimitiveType type> |
338 | | using T = AggregateFunctionTemplate<type>; |
339 | | }; |
340 | | template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate> |
341 | | struct CurryDirectWithResultType { |
342 | | template <PrimitiveType type, PrimitiveType result_type> |
343 | | using T = AggregateFunctionTemplate<type, result_type>; |
344 | | }; |
345 | | template <template <typename> class AggregateFunctionTemplate, template <PrimitiveType> class Data> |
346 | | struct CurryData { |
347 | | template <PrimitiveType Type> |
348 | | using T = AggregateFunctionTemplate<Data<Type>>; |
349 | | }; |
350 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
351 | | template <PrimitiveType> class Impl> |
352 | | struct CurryDataImpl { |
353 | | template <PrimitiveType Type> |
354 | | using T = AggregateFunctionTemplate<Data<Impl<Type>>>; |
355 | | }; |
356 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
357 | | template <PrimitiveType> class Data> |
358 | | struct CurryDirectAndData { |
359 | | template <PrimitiveType Type> |
360 | | using T = AggregateFunctionTemplate<Type, Data<Type>>; |
361 | | }; |
362 | | |
363 | | template <int define_index, PrimitiveType... AllowedTypes> |
364 | | struct creator_with_type_list_base { |
365 | | template <typename Class, typename... TArgs> |
366 | | static AggregateFunctionPtr create_base(const DataTypes& argument_types, |
367 | | const bool result_is_nullable, |
368 | 76.1k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
369 | 76.1k | auto create = [&]<PrimitiveType Ptype>() { |
370 | 75.4k | return creator_without_type::create<typename Class::template T<Ptype>>( |
371 | 75.4k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
372 | 75.4k | }; _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 | 369 | 3.77k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3.77k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3.77k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 3.77k | }; |
_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 | 369 | 50 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 50 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 50 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 50 | }; |
_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 | 369 | 9.01k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 9.01k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 9.01k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 9.01k | }; |
_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 | 369 | 2.62k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2.62k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2.62k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2.62k | }; |
_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 | 369 | 80 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 80 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 80 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 80 | }; |
_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 | 369 | 30 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 30 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 30 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 30 | }; |
_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 | 369 | 365 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 365 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 365 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 365 | }; |
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 | 369 | 102 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 102 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 102 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 102 | }; |
_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 | 369 | 34 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 34 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 34 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 34 | }; |
_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 | 369 | 1.18k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.18k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.18k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.18k | }; |
_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 | 369 | 408 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 408 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 408 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 408 | }; |
_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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 217 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 217 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 217 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 217 | }; |
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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 16 | }; |
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 | 369 | 712 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 712 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 712 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 712 | }; |
_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 | 369 | 64 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 64 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 64 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 64 | }; |
_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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 549 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 549 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 549 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 549 | }; |
_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 | 369 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 36 | }; |
_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 | 369 | 33 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 33 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 33 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 33 | }; |
_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 | 369 | 457 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 457 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 457 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 457 | }; |
_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 | 369 | 35 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 35 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 35 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 35 | }; |
_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 | 369 | 35 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 35 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 35 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 35 | }; |
_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 | 369 | 33 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 33 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 33 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 33 | }; |
_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 | 369 | 33 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 33 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 33 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 33 | }; |
_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 | 369 | 461 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 461 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 461 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 461 | }; |
_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 | 369 | 35 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 35 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 35 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 35 | }; |
_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 | 369 | 35 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 35 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 35 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 35 | }; |
_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 | 369 | 33 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 33 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 33 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 33 | }; |
_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 | 369 | 33 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 33 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 33 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 33 | }; |
_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 | 369 | 457 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 457 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 457 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 457 | }; |
_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 | 369 | 35 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 35 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 35 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 35 | }; |
_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 | 369 | 35 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 35 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 35 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 35 | }; |
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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; |
_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 | 369 | 912 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 912 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 912 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 912 | }; |
_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 | 369 | 347 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 347 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 347 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 347 | }; |
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 | 369 | 921 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 921 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 921 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 981 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 981 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 981 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1.20k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.20k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.20k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 3.87k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3.87k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3.87k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 3.87k | }; |
_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 | 369 | 1.09k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.09k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.09k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.09k | }; |
_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 | 369 | 1.45k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.45k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.45k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.45k | }; |
_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 | 369 | 1.89k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.89k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.89k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.89k | }; |
_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 | 369 | 894 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 894 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 894 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 30 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 30 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 30 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1.23k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.23k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.23k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.23k | }; |
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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1 | }; |
_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 | 369 | 60 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 60 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 60 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 36 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 36 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 36 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 56 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 56 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 56 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 50 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 50 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 50 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 46 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 46 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 46 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 42 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 42 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 42 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 69 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 69 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 69 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 24 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 24 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 24 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 16 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 16 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 16 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 125 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 125 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 125 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 125 | }; |
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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 425 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 425 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 425 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 425 | }; |
_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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 423 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 423 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 423 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 423 | }; |
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 | 369 | 106 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 106 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 106 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 106 | }; |
_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 | 369 | 309 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 309 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 309 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 309 | }; |
_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 | 369 | 324 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 324 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 324 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 324 | }; |
_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 | 369 | 12.7k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12.7k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12.7k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12.7k | }; |
_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 | 369 | 4.02k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4.02k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4.02k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4.02k | }; |
_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 | 369 | 234 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 234 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 234 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 234 | }; |
_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 | 369 | 132 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 132 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 132 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 132 | }; |
_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 | 369 | 164 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 164 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 164 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 164 | }; |
_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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; |
_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 | 369 | 40 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 40 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 40 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 40 | }; |
_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 | 369 | 1.96k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.96k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.96k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.96k | }; |
_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 | 369 | 708 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 708 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 708 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 708 | }; |
_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 | 369 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 26 | }; |
_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 | 369 | 5.82k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 5.82k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 5.82k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 5.82k | }; |
_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 | 369 | 4.68k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4.68k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4.68k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4.68k | }; |
_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 | 369 | 628 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 628 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 628 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 628 | }; |
_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 | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
_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 | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
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 _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 Line | Count | Source | 369 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 8 | }; |
_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 Line | Count | Source | 369 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 20 | }; |
_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 Line | Count | Source | 369 | 31 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 31 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 31 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 31 | }; |
_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 | 369 | 1.96k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.96k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.96k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.96k | }; |
_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 Line | Count | Source | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; |
_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 Line | Count | Source | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; |
_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 Line | Count | Source | 369 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 11 | }; |
_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 Line | Count | Source | 369 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4 | }; |
_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 Line | Count | Source | 369 | 6 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 6 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 6 | }; |
_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 | 369 | 455 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 455 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 455 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 455 | }; |
_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 | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
_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 Line | Count | Source | 369 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4 | }; |
_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 Line | Count | Source | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; |
_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 Line | Count | Source | 369 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_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_24OrthBitmapUnionCountDataEEEJEEESt10shared_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_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_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_24OrthBitmapUnionCountDataEEEJEEESt10shared_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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 10 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 10 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 10 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 428 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 428 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 428 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 428 | }; |
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_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_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_20AggOrthBitMapExprCalEEEJEEESt10shared_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_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_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_20AggOrthBitMapExprCalEEEJEEESt10shared_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_25AggOrthBitMapExprCalCountEEEJEEESt10shared_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_25AggOrthBitMapExprCalCountEEEJEEESt10shared_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_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_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_25AggOrthBitMapExprCalCountEEEJEEESt10shared_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_26EEE11create_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_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 369 | 5 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 5 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 5 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 5 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 369 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 8 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 369 | 18 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 18 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 18 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_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_26EEE11create_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_26EEE11create_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_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 369 | 43 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 43 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 43 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 43 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 369 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 19 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 369 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 19 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 369 | 4 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_3EEEDav Line | Count | Source | 369 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_4EEEDav Line | Count | Source | 369 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_5EEEDav Line | Count | Source | 369 | 446 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 446 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 446 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 446 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_6EEEDav Line | Count | Source | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 21 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_7EEEDav Line | Count | Source | 369 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_8EEEDav Line | Count | Source | 369 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 20 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 20 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 20 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 20 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_28EEEDav Line | Count | Source | 369 | 19 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 19 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 19 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 19 | }; |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_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_26EEE11create_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_26EEE11create_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_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_10EEEDav Line | Count | Source | 369 | 39 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 39 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 39 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 39 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 369 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 38 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_26EEEDav Line | Count | Source | 369 | 38 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 38 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 38 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 38 | }; |
_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 | 369 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 1 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 444 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 444 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 444 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 21 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 21 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 21 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 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 | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 456 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 456 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 456 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 456 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 26 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 445 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 445 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 445 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 445 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 436 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 436 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 436 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 436 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 369 | 7 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 7 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 7 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_2EEEDav Line | Count | Source | 369 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 8 | }; |
|
373 | 76.1k | AggregateFunctionPtr result = nullptr; |
374 | 76.1k | auto type = argument_types[define_index]->get_primitive_type(); |
375 | 76.1k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || |
376 | 76.1k | type == PrimitiveType::TYPE_JSONB) { |
377 | 3.70k | type = PrimitiveType::TYPE_VARCHAR; |
378 | 3.70k | } |
379 | | |
380 | 76.1k | ( |
381 | 1.01M | [&] { |
382 | 1.01M | if (type == AllowedTypes) { |
383 | 75.3k | result = create.template operator()<AllowedTypes>(); |
384 | 75.3k | } |
385 | 1.01M | }(), _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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 3.77k | result = create.template operator()<AllowedTypes>(); | 384 | 3.77k | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 50 | result = create.template operator()<AllowedTypes>(); | 384 | 50 | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 9.01k | result = create.template operator()<AllowedTypes>(); | 384 | 9.01k | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 2.62k | result = create.template operator()<AllowedTypes>(); | 384 | 2.62k | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 80 | result = create.template operator()<AllowedTypes>(); | 384 | 80 | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 30 | result = create.template operator()<AllowedTypes>(); | 384 | 30 | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 365 | result = create.template operator()<AllowedTypes>(); | 384 | 365 | } | 385 | 15.9k | }(), |
_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 | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 15.9k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 102 | result = create.template operator()<AllowedTypes>(); | 384 | 102 | } | 385 | 1.94k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 34 | result = create.template operator()<AllowedTypes>(); | 384 | 34 | } | 385 | 1.94k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 1.18k | result = create.template operator()<AllowedTypes>(); | 384 | 1.18k | } | 385 | 1.94k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 409 | result = create.template operator()<AllowedTypes>(); | 384 | 409 | } | 385 | 1.94k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.94k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 217 | result = create.template operator()<AllowedTypes>(); | 384 | 217 | } | 385 | 1.94k | }(), |
_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 | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.94k | }(), |
_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 | 381 | 1.41k | [&] { | 382 | 1.41k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 16 | result = create.template operator()<AllowedTypes>(); | 384 | 16 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.41k | [&] { | 382 | 1.41k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE13_clEv Line | Count | Source | 381 | 1.41k | [&] { | 382 | 1.41k | if (type == AllowedTypes) { | 383 | 712 | result = create.template operator()<AllowedTypes>(); | 384 | 712 | } | 385 | 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 | 381 | 1.41k | [&] { | 382 | 1.41k | if (type == AllowedTypes) { | 383 | 64 | result = create.template operator()<AllowedTypes>(); | 384 | 64 | } | 385 | 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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 13 | result = create.template operator()<AllowedTypes>(); | 384 | 13 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 549 | result = create.template operator()<AllowedTypes>(); | 384 | 549 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 10 | result = create.template operator()<AllowedTypes>(); | 384 | 10 | } | 385 | 1.40k | }(), |
_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 | 381 | 1.41k | [&] { | 382 | 1.41k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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_ENKUlvE0_clEv Line | Count | Source | 381 | 1.41k | [&] { | 382 | 1.41k | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 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_ENKUlvE_clEv Line | Count | Source | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 16 | result = create.template operator()<AllowedTypes>(); | 384 | 16 | } | 385 | 1.40k | }(), |
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 | 381 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 36 | result = create.template operator()<AllowedTypes>(); | 384 | 36 | } | 385 | 595 | }(), |
_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 | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 594 | }(), |
_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 | 381 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 456 | result = create.template operator()<AllowedTypes>(); | 384 | 456 | } | 385 | 595 | }(), |
_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 | 381 | 596 | [&] { | 382 | 596 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 596 | }(), |
_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 | 381 | 596 | [&] { | 382 | 596 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 596 | }(), |
_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 | 381 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 595 | }(), |
_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 | 381 | 597 | [&] { | 382 | 597 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 597 | }(), |
_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 | 381 | 597 | [&] { | 382 | 597 | if (type == AllowedTypes) { | 383 | 461 | result = create.template operator()<AllowedTypes>(); | 384 | 461 | } | 385 | 597 | }(), |
_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 | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 594 | }(), |
_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 | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 594 | }(), |
_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 | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 594 | }(), |
_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 | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 594 | }(), |
_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 | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 459 | result = create.template operator()<AllowedTypes>(); | 384 | 459 | } | 385 | 594 | }(), |
_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 | 381 | 593 | [&] { | 382 | 593 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 593 | }(), |
_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 | 381 | 592 | [&] { | 382 | 592 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 592 | }(), |
_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 | 381 | 2.14k | [&] { | 382 | 2.14k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2.14k | }(), |
_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 | 381 | 2.14k | [&] { | 382 | 2.14k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2.14k | }(), |
_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 | 381 | 2.14k | [&] { | 382 | 2.14k | if (type == AllowedTypes) { | 383 | 913 | result = create.template operator()<AllowedTypes>(); | 384 | 913 | } | 385 | 2.14k | }(), |
_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 | 381 | 2.14k | [&] { | 382 | 2.14k | if (type == AllowedTypes) { | 383 | 346 | result = create.template operator()<AllowedTypes>(); | 384 | 346 | } | 385 | 2.14k | }(), |
_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 | 381 | 2.14k | [&] { | 382 | 2.14k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2.14k | }(), |
_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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 921 | result = create.template operator()<AllowedTypes>(); | 384 | 921 | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 981 | result = create.template operator()<AllowedTypes>(); | 384 | 981 | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 1.20k | result = create.template operator()<AllowedTypes>(); | 384 | 1.20k | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 3.87k | result = create.template operator()<AllowedTypes>(); | 384 | 3.87k | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 1.09k | result = create.template operator()<AllowedTypes>(); | 384 | 1.09k | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 1.45k | result = create.template operator()<AllowedTypes>(); | 384 | 1.45k | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 1.89k | result = create.template operator()<AllowedTypes>(); | 384 | 1.89k | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 894 | result = create.template operator()<AllowedTypes>(); | 384 | 894 | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 30 | result = create.template operator()<AllowedTypes>(); | 384 | 30 | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 1.23k | result = create.template operator()<AllowedTypes>(); | 384 | 1.23k | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 13.5k | }(), |
_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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 60 | result = create.template operator()<AllowedTypes>(); | 384 | 60 | } | 385 | 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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 36 | result = create.template operator()<AllowedTypes>(); | 384 | 36 | } | 385 | 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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 42 | result = create.template operator()<AllowedTypes>(); | 384 | 42 | } | 385 | 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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 36 | result = create.template operator()<AllowedTypes>(); | 384 | 36 | } | 385 | 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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 36 | result = create.template operator()<AllowedTypes>(); | 384 | 36 | } | 385 | 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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 40 | result = create.template operator()<AllowedTypes>(); | 384 | 40 | } | 385 | 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 | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 56 | result = create.template operator()<AllowedTypes>(); | 384 | 56 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 50 | result = create.template operator()<AllowedTypes>(); | 384 | 50 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 46 | result = create.template operator()<AllowedTypes>(); | 384 | 46 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 42 | result = create.template operator()<AllowedTypes>(); | 384 | 42 | } | 385 | 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 | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 69 | result = create.template operator()<AllowedTypes>(); | 384 | 69 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 24 | result = create.template operator()<AllowedTypes>(); | 384 | 24 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 16 | result = create.template operator()<AllowedTypes>(); | 384 | 16 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 16 | result = create.template operator()<AllowedTypes>(); | 384 | 16 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 40 | result = create.template operator()<AllowedTypes>(); | 384 | 40 | } | 385 | 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 | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 125 | result = create.template operator()<AllowedTypes>(); | 384 | 125 | } | 385 | 221 | }(), |
_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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 430 | [&] { | 382 | 430 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 430 | }(), |
_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 | 381 | 432 | [&] { | 382 | 432 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 430 | [&] { | 382 | 430 | if (type == AllowedTypes) { | 383 | 3 | result = create.template operator()<AllowedTypes>(); | 384 | 3 | } | 385 | 430 | }(), |
_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 | 381 | 431 | [&] { | 382 | 431 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 431 | }(), |
_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 | 381 | 429 | [&] { | 382 | 429 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE9_clEv Line | Count | Source | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE8_clEv Line | Count | Source | 381 | 434 | [&] { | 382 | 434 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 434 | }(), |
_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 | 381 | 432 | [&] { | 382 | 432 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 432 | [&] { | 382 | 432 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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_ENKUlvE5_clEv Line | Count | Source | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE4_clEv Line | Count | Source | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 425 | result = create.template operator()<AllowedTypes>(); | 384 | 425 | } | 385 | 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_ENKUlvE3_clEv Line | Count | Source | 381 | 431 | [&] { | 382 | 431 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 431 | }(), |
_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 | 381 | 429 | [&] { | 382 | 429 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 381 | 429 | [&] { | 382 | 429 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 381 | 428 | [&] { | 382 | 428 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 428 | [&] { | 382 | 428 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE15_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 421 | [&] { | 382 | 421 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 421 | }(), |
_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 | 381 | 423 | [&] { | 382 | 423 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 423 | }(), |
_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 | 381 | 422 | [&] { | 382 | 422 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 422 | }(), |
_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 | 381 | 422 | [&] { | 382 | 422 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 422 | }(), |
_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 | 381 | 427 | [&] { | 382 | 427 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE10_clEv Line | Count | Source | 381 | 422 | [&] { | 382 | 422 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 422 | }(), |
_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 | 381 | 426 | [&] { | 382 | 426 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 426 | }(), |
_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 | 381 | 422 | [&] { | 382 | 422 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 422 | }(), |
_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 | 381 | 422 | [&] { | 382 | 422 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 422 | }(), |
_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 | 381 | 422 | [&] { | 382 | 422 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 422 | }(), |
_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 | 381 | 429 | [&] { | 382 | 429 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE4_clEv Line | Count | Source | 381 | 425 | [&] { | 382 | 425 | if (type == AllowedTypes) { | 383 | 421 | result = create.template operator()<AllowedTypes>(); | 384 | 421 | } | 385 | 425 | }(), |
_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 | 381 | 423 | [&] { | 382 | 423 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 423 | }(), |
_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 | 381 | 426 | [&] { | 382 | 426 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 426 | }(), |
_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 | 381 | 428 | [&] { | 382 | 428 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE0_clEv Line | Count | Source | 381 | 427 | [&] { | 382 | 427 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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_ENKUlvE_clEv Line | Count | Source | 381 | 424 | [&] { | 382 | 424 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 424 | }(), |
_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 | 381 | 31.9k | [&] { | 382 | 31.9k | if (type == AllowedTypes) { | 383 | 106 | result = create.template operator()<AllowedTypes>(); | 384 | 106 | } | 385 | 31.9k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 309 | result = create.template operator()<AllowedTypes>(); | 384 | 309 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 324 | result = create.template operator()<AllowedTypes>(); | 384 | 324 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 12.7k | result = create.template operator()<AllowedTypes>(); | 384 | 12.7k | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 4.02k | result = create.template operator()<AllowedTypes>(); | 384 | 4.02k | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 234 | result = create.template operator()<AllowedTypes>(); | 384 | 234 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 132 | result = create.template operator()<AllowedTypes>(); | 384 | 132 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 164 | result = create.template operator()<AllowedTypes>(); | 384 | 164 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 40 | result = create.template operator()<AllowedTypes>(); | 384 | 40 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 1.96k | result = create.template operator()<AllowedTypes>(); | 384 | 1.96k | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 708 | result = create.template operator()<AllowedTypes>(); | 384 | 708 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 26 | result = create.template operator()<AllowedTypes>(); | 384 | 26 | } | 385 | 31.8k | }(), |
_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 | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 5.82k | result = create.template operator()<AllowedTypes>(); | 384 | 5.82k | } | 385 | 31.8k | }(), |
_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 | 381 | 31.9k | [&] { | 382 | 31.9k | if (type == AllowedTypes) { | 383 | 4.68k | result = create.template operator()<AllowedTypes>(); | 384 | 4.68k | } | 385 | 31.9k | }(), |
_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 | 381 | 31.9k | [&] { | 382 | 31.9k | if (type == AllowedTypes) { | 383 | 628 | result = create.template operator()<AllowedTypes>(); | 384 | 628 | } | 385 | 31.9k | }(), |
_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 | 381 | 31.9k | [&] { | 382 | 31.9k | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 31.9k | }(), |
_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 | 381 | 31.9k | [&] { | 382 | 31.9k | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 31.9k | }(), |
_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 | 381 | 31.9k | [&] { | 382 | 31.9k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 31.9k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 2.03k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 2.03k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 31 | result = create.template operator()<AllowedTypes>(); | 384 | 31 | } | 385 | 2.03k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 1.96k | result = create.template operator()<AllowedTypes>(); | 384 | 1.96k | } | 385 | 2.03k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2.03k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2.03k | }(), |
_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 | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 11 | result = create.template operator()<AllowedTypes>(); | 384 | 11 | } | 385 | 2.03k | }(), |
_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 | 381 | 496 | [&] { | 382 | 496 | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 496 | }(), |
_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 | 381 | 497 | [&] { | 382 | 497 | if (type == AllowedTypes) { | 383 | 6 | result = create.template operator()<AllowedTypes>(); | 384 | 6 | } | 385 | 497 | }(), |
_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 | 381 | 496 | [&] { | 382 | 496 | if (type == AllowedTypes) { | 383 | 455 | result = create.template operator()<AllowedTypes>(); | 384 | 455 | } | 385 | 496 | }(), |
_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 | 381 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 499 | }(), |
_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 | 381 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 499 | }(), |
_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 | 381 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 499 | }(), |
_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 | 381 | 498 | [&] { | 382 | 498 | if (type == AllowedTypes) { | 383 | 13 | result = create.template operator()<AllowedTypes>(); | 384 | 13 | } | 385 | 498 | }(), |
_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 | 381 | 3 | [&] { | 382 | 3 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 3 | [&] { | 382 | 3 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 3 | [&] { | 382 | 3 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 3 | [&] { | 382 | 3 | if (type == AllowedTypes) { | 383 | 3 | result = create.template operator()<AllowedTypes>(); | 384 | 3 | } | 385 | 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 | 381 | 3 | [&] { | 382 | 3 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 11 | [&] { | 382 | 11 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 11 | [&] { | 382 | 11 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 11 | [&] { | 382 | 11 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 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 | 381 | 11 | [&] { | 382 | 11 | if (type == AllowedTypes) { | 383 | 11 | result = create.template operator()<AllowedTypes>(); | 384 | 11 | } | 385 | 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 | 381 | 11 | [&] { | 382 | 11 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 11 | }(), |
Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Unexecuted instantiation: _ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv _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 | 381 | 442 | [&] { | 382 | 442 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 442 | }(), |
_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 | 381 | 442 | [&] { | 382 | 442 | if (type == AllowedTypes) { | 383 | 10 | result = create.template operator()<AllowedTypes>(); | 384 | 10 | } | 385 | 442 | }(), |
_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 | 381 | 442 | [&] { | 382 | 442 | if (type == AllowedTypes) { | 383 | 428 | result = create.template operator()<AllowedTypes>(); | 384 | 428 | } | 385 | 442 | }(), |
_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 | 381 | 442 | [&] { | 382 | 442 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 442 | }(), |
_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 | 381 | 442 | [&] { | 382 | 442 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 442 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 5 | result = create.template operator()<AllowedTypes>(); | 384 | 5 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 18 | result = create.template operator()<AllowedTypes>(); | 384 | 18 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 43 | result = create.template operator()<AllowedTypes>(); | 384 | 43 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 19 | result = create.template operator()<AllowedTypes>(); | 384 | 19 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 19 | result = create.template operator()<AllowedTypes>(); | 384 | 19 | } | 385 | 168 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 381 | 701 | [&] { | 382 | 701 | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 701 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE12_clEv Line | Count | Source | 381 | 704 | [&] { | 382 | 704 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 704 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE11_clEv Line | Count | Source | 381 | 704 | [&] { | 382 | 704 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 704 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE10_clEv Line | Count | Source | 381 | 706 | [&] { | 382 | 706 | if (type == AllowedTypes) { | 383 | 448 | result = create.template operator()<AllowedTypes>(); | 384 | 448 | } | 385 | 706 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE9_clEv Line | Count | Source | 381 | 702 | [&] { | 382 | 702 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 702 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_clEv Line | Count | Source | 381 | 701 | [&] { | 382 | 701 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 701 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE7_clEv Line | Count | Source | 381 | 702 | [&] { | 382 | 702 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 702 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE6_clEv Line | Count | Source | 381 | 704 | [&] { | 382 | 704 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 704 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE5_clEv Line | Count | Source | 381 | 704 | [&] { | 382 | 704 | if (type == AllowedTypes) { | 383 | 19 | result = create.template operator()<AllowedTypes>(); | 384 | 19 | } | 385 | 704 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE4_clEv Line | Count | Source | 381 | 703 | [&] { | 382 | 703 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 703 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE3_clEv Line | Count | Source | 381 | 703 | [&] { | 382 | 703 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 703 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 381 | 703 | [&] { | 382 | 703 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 703 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE1_clEv Line | Count | Source | 381 | 702 | [&] { | 382 | 702 | if (type == AllowedTypes) { | 383 | 39 | result = create.template operator()<AllowedTypes>(); | 384 | 39 | } | 385 | 702 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE0_clEv Line | Count | Source | 381 | 701 | [&] { | 382 | 701 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 701 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 702 | [&] { | 382 | 702 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 702 | }(), |
_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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 3 | result = create.template operator()<AllowedTypes>(); | 384 | 3 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 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 | 381 | 579 | [&] { | 382 | 579 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 579 | }(), |
_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 | 381 | 578 | [&] { | 382 | 578 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 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 | 381 | 578 | [&] { | 382 | 578 | if (type == AllowedTypes) { | 383 | 444 | result = create.template operator()<AllowedTypes>(); | 384 | 444 | } | 385 | 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 | 381 | 579 | [&] { | 382 | 579 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 579 | }(), |
_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 | 381 | 579 | [&] { | 382 | 579 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 579 | }(), |
_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 | 381 | 579 | [&] { | 382 | 579 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 579 | }(), |
_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 | 381 | 579 | [&] { | 382 | 579 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 579 | }(), |
_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 | 381 | 580 | [&] { | 382 | 580 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 580 | }(), |
_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 | 381 | 580 | [&] { | 382 | 580 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 580 | }(), |
_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 | 381 | 580 | [&] { | 382 | 580 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 580 | }(), |
_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 | 381 | 580 | [&] { | 382 | 580 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 580 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 456 | [&] { | 382 | 456 | if (type == AllowedTypes) { | 383 | 456 | result = create.template operator()<AllowedTypes>(); | 384 | 456 | } | 385 | 456 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 26 | [&] { | 382 | 26 | if (type == AllowedTypes) { | 383 | 26 | result = create.template operator()<AllowedTypes>(); | 384 | 26 | } | 385 | 26 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 444 | [&] { | 382 | 446 | if (type == AllowedTypes) { | 383 | 446 | result = create.template operator()<AllowedTypes>(); | 384 | 446 | } | 385 | 444 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 435 | [&] { | 382 | 435 | if (type == AllowedTypes) { | 383 | 435 | result = create.template operator()<AllowedTypes>(); | 384 | 435 | } | 385 | 435 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 7 | [&] { | 382 | 7 | if (type == AllowedTypes) { | 383 | 7 | result = create.template operator()<AllowedTypes>(); | 384 | 7 | } | 385 | 7 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 8 | [&] { | 382 | 8 | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 8 | }(), |
|
386 | 76.1k | ...); |
387 | | |
388 | 76.1k | return result; |
389 | 76.1k | } _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 | 368 | 15.9k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 15.9k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 15.9k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 15.9k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 15.9k | }; | 373 | 15.9k | AggregateFunctionPtr result = nullptr; | 374 | 15.9k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 15.9k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 15.9k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 15.9k | ( | 381 | 15.9k | [&] { | 382 | 15.9k | if (type == AllowedTypes) { | 383 | 15.9k | result = create.template operator()<AllowedTypes>(); | 384 | 15.9k | } | 385 | 15.9k | }(), | 386 | 15.9k | ...); | 387 | | | 388 | 15.9k | return result; | 389 | 15.9k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_9ELS1_20EEE11create_baseINS_11CurryDirectINS_16AggregateFuncAvgEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 1.94k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 1.94k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.94k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.94k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.94k | }; | 373 | 1.94k | AggregateFunctionPtr result = nullptr; | 374 | 1.94k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 1.94k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 1.94k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 1.94k | ( | 381 | 1.94k | [&] { | 382 | 1.94k | if (type == AllowedTypes) { | 383 | 1.94k | result = create.template operator()<AllowedTypes>(); | 384 | 1.94k | } | 385 | 1.94k | }(), | 386 | 1.94k | ...); | 387 | | | 388 | 1.94k | return result; | 389 | 1.94k | } |
_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 | 368 | 1.40k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 1.40k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.40k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.40k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.40k | }; | 373 | 1.40k | AggregateFunctionPtr result = nullptr; | 374 | 1.40k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 1.40k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 1.40k | type == PrimitiveType::TYPE_JSONB) { | 377 | 517 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 517 | } | 379 | | | 380 | 1.40k | ( | 381 | 1.40k | [&] { | 382 | 1.40k | if (type == AllowedTypes) { | 383 | 1.40k | result = create.template operator()<AllowedTypes>(); | 384 | 1.40k | } | 385 | 1.40k | }(), | 386 | 1.40k | ...); | 387 | | | 388 | 1.40k | return result; | 389 | 1.40k | } |
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 | 368 | 594 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 594 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 594 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 594 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 594 | }; | 373 | 594 | AggregateFunctionPtr result = nullptr; | 374 | 594 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 596 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 596 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 594 | ( | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 594 | result = create.template operator()<AllowedTypes>(); | 384 | 594 | } | 385 | 594 | }(), | 386 | 594 | ...); | 387 | | | 388 | 594 | return result; | 389 | 594 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 596 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 596 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 596 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 596 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 596 | }; | 373 | 596 | AggregateFunctionPtr result = nullptr; | 374 | 596 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 596 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 596 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 596 | ( | 381 | 596 | [&] { | 382 | 596 | if (type == AllowedTypes) { | 383 | 596 | result = create.template operator()<AllowedTypes>(); | 384 | 596 | } | 385 | 596 | }(), | 386 | 596 | ...); | 387 | | | 388 | 596 | return result; | 389 | 596 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 594 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 594 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 594 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 594 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 594 | }; | 373 | 594 | AggregateFunctionPtr result = nullptr; | 374 | 594 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 596 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 596 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 594 | ( | 381 | 594 | [&] { | 382 | 594 | if (type == AllowedTypes) { | 383 | 594 | result = create.template operator()<AllowedTypes>(); | 384 | 594 | } | 385 | 594 | }(), | 386 | 594 | ...); | 387 | | | 388 | 594 | return result; | 389 | 594 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionDistinctNumericEEEJRKSt10shared_ptrINS_18IAggregateFunctionEEEEES9_RKSt6vectorIS7_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 2.14k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 2.14k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2.14k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2.14k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2.14k | }; | 373 | 2.14k | AggregateFunctionPtr result = nullptr; | 374 | 2.14k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 2.14k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 2.14k | type == PrimitiveType::TYPE_JSONB) { | 377 | 402 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 402 | } | 379 | | | 380 | 2.14k | ( | 381 | 2.14k | [&] { | 382 | 2.14k | if (type == AllowedTypes) { | 383 | 2.14k | result = create.template operator()<AllowedTypes>(); | 384 | 2.14k | } | 385 | 2.14k | }(), | 386 | 2.14k | ...); | 387 | | | 388 | 2.14k | return result; | 389 | 2.14k | } |
_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 | 368 | 13.5k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 13.5k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 13.5k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 13.5k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 13.5k | }; | 373 | 13.5k | AggregateFunctionPtr result = nullptr; | 374 | 13.5k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 13.5k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 13.5k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 13.5k | ( | 381 | 13.5k | [&] { | 382 | 13.5k | if (type == AllowedTypes) { | 383 | 13.5k | result = create.template operator()<AllowedTypes>(); | 384 | 13.5k | } | 385 | 13.5k | }(), | 386 | 13.5k | ...); | 387 | | | 388 | 13.5k | return result; | 389 | 13.5k | } |
_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 | 368 | 306 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 306 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 306 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 306 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 306 | }; | 373 | 306 | AggregateFunctionPtr result = nullptr; | 374 | 306 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 306 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 306 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 306 | ( | 381 | 306 | [&] { | 382 | 306 | if (type == AllowedTypes) { | 383 | 306 | result = create.template operator()<AllowedTypes>(); | 384 | 306 | } | 385 | 306 | }(), | 386 | 306 | ...); | 387 | | | 388 | 306 | return result; | 389 | 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 | 368 | 321 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 321 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 321 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 321 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 321 | }; | 373 | 321 | AggregateFunctionPtr result = nullptr; | 374 | 321 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 321 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 321 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 321 | ( | 381 | 321 | [&] { | 382 | 321 | if (type == AllowedTypes) { | 383 | 321 | result = create.template operator()<AllowedTypes>(); | 384 | 321 | } | 385 | 321 | }(), | 386 | 321 | ...); | 387 | | | 388 | 321 | return result; | 389 | 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 | 368 | 221 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 221 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 221 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 221 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 221 | }; | 373 | 221 | AggregateFunctionPtr result = nullptr; | 374 | 221 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 221 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 221 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 221 | ( | 381 | 221 | [&] { | 382 | 221 | if (type == AllowedTypes) { | 383 | 221 | result = create.template operator()<AllowedTypes>(); | 384 | 221 | } | 385 | 221 | }(), | 386 | 221 | ...); | 387 | | | 388 | 221 | return result; | 389 | 221 | } |
_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 | 368 | 12 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 12 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12 | }; | 373 | 12 | AggregateFunctionPtr result = nullptr; | 374 | 12 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 12 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 12 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 12 | ( | 381 | 12 | [&] { | 382 | 12 | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 12 | }(), | 386 | 12 | ...); | 387 | | | 388 | 12 | return result; | 389 | 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 | 368 | 431 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 431 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 431 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 431 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 431 | }; | 373 | 431 | AggregateFunctionPtr result = nullptr; | 374 | 431 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 434 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 431 | type == PrimitiveType::TYPE_JSONB) { | 377 | 270 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 270 | } | 379 | | | 380 | 431 | ( | 381 | 431 | [&] { | 382 | 431 | if (type == AllowedTypes) { | 383 | 431 | result = create.template operator()<AllowedTypes>(); | 384 | 431 | } | 385 | 431 | }(), | 386 | 431 | ...); | 387 | | | 388 | 431 | return result; | 389 | 431 | } |
_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 | 368 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; | 373 | 2 | AggregateFunctionPtr result = nullptr; | 374 | 2 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 2 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 2 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 2 | ( | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2 | }(), | 386 | 2 | ...); | 387 | | | 388 | 2 | return result; | 389 | 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 | 368 | 423 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 423 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 423 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 423 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 423 | }; | 373 | 423 | AggregateFunctionPtr result = nullptr; | 374 | 423 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 426 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 423 | type == PrimitiveType::TYPE_JSONB) { | 377 | 272 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 272 | } | 379 | | | 380 | 423 | ( | 381 | 423 | [&] { | 382 | 423 | if (type == AllowedTypes) { | 383 | 423 | result = create.template operator()<AllowedTypes>(); | 384 | 423 | } | 385 | 423 | }(), | 386 | 423 | ...); | 387 | | | 388 | 423 | return result; | 389 | 423 | } |
_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 | 368 | 31.8k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 31.8k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 31.8k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 31.8k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 31.8k | }; | 373 | 31.8k | AggregateFunctionPtr result = nullptr; | 374 | 31.8k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 31.8k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 31.8k | type == PrimitiveType::TYPE_JSONB) { | 377 | 2.17k | type = PrimitiveType::TYPE_VARCHAR; | 378 | 2.17k | } | 379 | | | 380 | 31.8k | ( | 381 | 31.8k | [&] { | 382 | 31.8k | if (type == AllowedTypes) { | 383 | 31.8k | result = create.template operator()<AllowedTypes>(); | 384 | 31.8k | } | 385 | 31.8k | }(), | 386 | 31.8k | ...); | 387 | | | 388 | 31.8k | return result; | 389 | 31.8k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_27AggregateFunctionPercentileEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 2.03k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 2.03k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2.03k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2.03k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2.03k | }; | 373 | 2.03k | AggregateFunctionPtr result = nullptr; | 374 | 2.03k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 2.03k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 2.03k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 2.03k | ( | 381 | 2.03k | [&] { | 382 | 2.03k | if (type == AllowedTypes) { | 383 | 2.03k | result = create.template operator()<AllowedTypes>(); | 384 | 2.03k | } | 385 | 2.03k | }(), | 386 | 2.03k | ...); | 387 | | | 388 | 2.03k | return result; | 389 | 2.03k | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9EEE11create_baseINS_11CurryDirectINS_32AggregateFunctionPercentileArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 497 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 497 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 497 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 497 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 497 | }; | 373 | 497 | AggregateFunctionPtr result = nullptr; | 374 | 497 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 497 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 497 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 497 | ( | 381 | 497 | [&] { | 382 | 497 | if (type == AllowedTypes) { | 383 | 497 | result = create.template operator()<AllowedTypes>(); | 384 | 497 | } | 385 | 497 | }(), | 386 | 497 | ...); | 387 | | | 388 | 497 | return result; | 389 | 497 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 3 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 3 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 3 | }; | 373 | 3 | AggregateFunctionPtr result = nullptr; | 374 | 3 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 3 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 3 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 3 | ( | 381 | 3 | [&] { | 382 | 3 | if (type == AllowedTypes) { | 383 | 3 | result = create.template operator()<AllowedTypes>(); | 384 | 3 | } | 385 | 3 | }(), | 386 | 3 | ...); | 387 | | | 388 | 3 | return result; | 389 | 3 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 11 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 11 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 11 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 11 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 11 | }; | 373 | 11 | AggregateFunctionPtr result = nullptr; | 374 | 11 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 11 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 11 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 11 | ( | 381 | 11 | [&] { | 382 | 11 | if (type == AllowedTypes) { | 383 | 11 | result = create.template operator()<AllowedTypes>(); | 384 | 11 | } | 385 | 11 | }(), | 386 | 11 | ...); | 387 | | | 388 | 11 | return result; | 389 | 11 | } |
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 441 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 441 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 441 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 441 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 441 | }; | 373 | 441 | AggregateFunctionPtr result = nullptr; | 374 | 441 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 442 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 441 | type == PrimitiveType::TYPE_JSONB) { | 377 | 2 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 2 | } | 379 | | | 380 | 441 | ( | 381 | 441 | [&] { | 382 | 441 | if (type == AllowedTypes) { | 383 | 441 | result = create.template operator()<AllowedTypes>(); | 384 | 441 | } | 385 | 441 | }(), | 386 | 441 | ...); | 387 | | | 388 | 441 | return result; | 389 | 441 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; | 373 | 2 | AggregateFunctionPtr result = nullptr; | 374 | 2 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 2 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 2 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 2 | ( | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2 | }(), | 386 | 2 | ...); | 387 | | | 388 | 2 | return result; | 389 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_9CurryDataINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 2 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 2 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2 | }; | 373 | 2 | AggregateFunctionPtr result = nullptr; | 374 | 2 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 2 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 2 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 2 | ( | 381 | 2 | [&] { | 382 | 2 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2 | }(), | 386 | 2 | ...); | 387 | | | 388 | 2 | return result; | 389 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 168 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 168 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 168 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 168 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 168 | }; | 373 | 168 | AggregateFunctionPtr result = nullptr; | 374 | 168 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 168 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 168 | type == PrimitiveType::TYPE_JSONB) { | 377 | 23 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 23 | } | 379 | | | 380 | 168 | ( | 381 | 168 | [&] { | 382 | 168 | if (type == AllowedTypes) { | 383 | 168 | result = create.template operator()<AllowedTypes>(); | 384 | 168 | } | 385 | 168 | }(), | 386 | 168 | ...); | 387 | | | 388 | 168 | return result; | 389 | 168 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE11create_baseINS_9CurryDataINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 705 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 705 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 705 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 705 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 705 | }; | 373 | 705 | AggregateFunctionPtr result = nullptr; | 374 | 705 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 705 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 705 | type == PrimitiveType::TYPE_JSONB) { | 377 | 39 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 39 | } | 379 | | | 380 | 705 | ( | 381 | 705 | [&] { | 382 | 705 | if (type == AllowedTypes) { | 383 | 705 | result = create.template operator()<AllowedTypes>(); | 384 | 705 | } | 385 | 705 | }(), | 386 | 705 | ...); | 387 | | | 388 | 705 | return result; | 389 | 705 | } |
_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 | 368 | 13 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 13 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 13 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 13 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 13 | }; | 373 | 13 | AggregateFunctionPtr result = nullptr; | 374 | 13 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 13 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 13 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 13 | ( | 381 | 13 | [&] { | 382 | 13 | if (type == AllowedTypes) { | 383 | 13 | result = create.template operator()<AllowedTypes>(); | 384 | 13 | } | 385 | 13 | }(), | 386 | 13 | ...); | 387 | | | 388 | 13 | return result; | 389 | 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 | 368 | 578 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 578 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 578 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 578 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 578 | }; | 373 | 578 | AggregateFunctionPtr result = nullptr; | 374 | 578 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 578 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 578 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 578 | ( | 381 | 578 | [&] { | 382 | 578 | if (type == AllowedTypes) { | 383 | 578 | result = create.template operator()<AllowedTypes>(); | 384 | 578 | } | 385 | 578 | }(), | 386 | 578 | ...); | 387 | | | 388 | 578 | return result; | 389 | 578 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 453 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 453 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 453 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 453 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 453 | }; | 373 | 453 | AggregateFunctionPtr result = nullptr; | 374 | 453 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 455 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 455 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 453 | ( | 381 | 453 | [&] { | 382 | 453 | if (type == AllowedTypes) { | 383 | 453 | result = create.template operator()<AllowedTypes>(); | 384 | 453 | } | 385 | 453 | }(), | 386 | 453 | ...); | 387 | | | 388 | 453 | return result; | 389 | 453 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 26 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 26 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 26 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 26 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 26 | }; | 373 | 26 | AggregateFunctionPtr result = nullptr; | 374 | 26 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 26 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 26 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 26 | ( | 381 | 26 | [&] { | 382 | 26 | if (type == AllowedTypes) { | 383 | 26 | result = create.template operator()<AllowedTypes>(); | 384 | 26 | } | 385 | 26 | }(), | 386 | 26 | ...); | 387 | | | 388 | 26 | return result; | 389 | 26 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_8SampDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 446 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 446 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 446 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 446 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 446 | }; | 373 | 446 | AggregateFunctionPtr result = nullptr; | 374 | 446 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 446 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 446 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 446 | ( | 381 | 446 | [&] { | 382 | 446 | if (type == AllowedTypes) { | 383 | 446 | result = create.template operator()<AllowedTypes>(); | 384 | 446 | } | 385 | 446 | }(), | 386 | 446 | ...); | 387 | | | 388 | 446 | return result; | 389 | 446 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 437 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 437 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 437 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 437 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 437 | }; | 373 | 437 | AggregateFunctionPtr result = nullptr; | 374 | 437 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 438 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 439 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 437 | ( | 381 | 437 | [&] { | 382 | 437 | if (type == AllowedTypes) { | 383 | 437 | result = create.template operator()<AllowedTypes>(); | 384 | 437 | } | 385 | 437 | }(), | 386 | 437 | ...); | 387 | | | 388 | 437 | return result; | 389 | 437 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 7 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 7 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 7 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 7 | }; | 373 | 7 | AggregateFunctionPtr result = nullptr; | 374 | 7 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 7 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 7 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 7 | ( | 381 | 7 | [&] { | 382 | 7 | if (type == AllowedTypes) { | 383 | 7 | result = create.template operator()<AllowedTypes>(); | 384 | 7 | } | 385 | 7 | }(), | 386 | 7 | ...); | 387 | | | 388 | 7 | return result; | 389 | 7 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 8 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 8 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 8 | }; | 373 | 8 | AggregateFunctionPtr result = nullptr; | 374 | 8 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 8 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 8 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 8 | ( | 381 | 8 | [&] { | 382 | 8 | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 8 | }(), | 386 | 8 | ...); | 387 | | | 388 | 8 | return result; | 389 | 8 | } |
|
390 | | |
391 | | template <typename Class, typename... TArgs> |
392 | | static AggregateFunctionPtr create_base_with_result_type(const std::string& name, |
393 | | const DataTypes& argument_types, |
394 | | const DataTypePtr& result_type, |
395 | | const bool result_is_nullable, |
396 | | const AggregateFunctionAttr& attr, |
397 | 3.67k | TArgs&&... args) { |
398 | 3.67k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { |
399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && |
400 | 0 | ResultType < InputType) { |
401 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
402 | 0 | "agg function {} error, arg type {}, result type {}", name, |
403 | 0 | argument_types[define_index]->get_name(), |
404 | 0 | result_type->get_name()); |
405 | 0 | return nullptr; |
406 | 3.67k | } else { |
407 | 3.67k | return creator_without_type::create< |
408 | 3.67k | typename Class::template T<InputType, ResultType>>( |
409 | 3.67k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
410 | 3.67k | } |
411 | 3.67k | }; 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 | 398 | 130 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 130 | } else { | 407 | 130 | return creator_without_type::create< | 408 | 130 | typename Class::template T<InputType, ResultType>>( | 409 | 130 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 130 | } | 411 | 130 | }; |
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 | 398 | 1.35k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 1.35k | } else { | 407 | 1.35k | return creator_without_type::create< | 408 | 1.35k | typename Class::template T<InputType, ResultType>>( | 409 | 1.35k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 1.35k | } | 411 | 1.35k | }; |
_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 | 398 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 18 | } else { | 407 | 18 | return creator_without_type::create< | 408 | 18 | typename Class::template T<InputType, ResultType>>( | 409 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 18 | } | 411 | 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 | 398 | 968 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 968 | } else { | 407 | 968 | return creator_without_type::create< | 408 | 968 | typename Class::template T<InputType, ResultType>>( | 409 | 968 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 968 | } | 411 | 968 | }; |
_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 | 398 | 9 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 9 | } else { | 407 | 9 | return creator_without_type::create< | 408 | 9 | typename Class::template T<InputType, ResultType>>( | 409 | 9 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 9 | } | 411 | 9 | }; |
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 | 398 | 112 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 112 | } else { | 407 | 112 | return creator_without_type::create< | 408 | 112 | typename Class::template T<InputType, ResultType>>( | 409 | 112 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 112 | } | 411 | 112 | }; |
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 | 398 | 93 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 93 | } else { | 407 | 93 | return creator_without_type::create< | 408 | 93 | typename Class::template T<InputType, ResultType>>( | 409 | 93 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 93 | } | 411 | 93 | }; |
_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 | 398 | 2 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 2 | } else { | 407 | 2 | return creator_without_type::create< | 408 | 2 | typename Class::template T<InputType, ResultType>>( | 409 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 2 | } | 411 | 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 | 398 | 626 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 626 | } else { | 407 | 626 | return creator_without_type::create< | 408 | 626 | typename Class::template T<InputType, ResultType>>( | 409 | 626 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 626 | } | 411 | 626 | }; |
_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 | 398 | 2 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 2 | } else { | 407 | 2 | return creator_without_type::create< | 408 | 2 | typename Class::template T<InputType, ResultType>>( | 409 | 2 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 2 | } | 411 | 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 | 398 | 81 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 81 | } else { | 407 | 81 | return creator_without_type::create< | 408 | 81 | typename Class::template T<InputType, ResultType>>( | 409 | 81 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 81 | } | 411 | 81 | }; |
_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 | 398 | 6 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 6 | } else { | 407 | 6 | return creator_without_type::create< | 408 | 6 | typename Class::template T<InputType, ResultType>>( | 409 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 6 | } | 411 | 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 | 398 | 84 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 84 | } else { | 407 | 84 | return creator_without_type::create< | 408 | 84 | typename Class::template T<InputType, ResultType>>( | 409 | 84 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 84 | } | 411 | 84 | }; |
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 | 398 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 18 | } else { | 407 | 18 | return creator_without_type::create< | 408 | 18 | typename Class::template T<InputType, ResultType>>( | 409 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 18 | } | 411 | 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 | 398 | 45 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 45 | } else { | 407 | 45 | return creator_without_type::create< | 408 | 45 | typename Class::template T<InputType, ResultType>>( | 409 | 45 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 45 | } | 411 | 45 | }; |
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 | 398 | 4 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 4 | } else { | 407 | 4 | return creator_without_type::create< | 408 | 4 | typename Class::template T<InputType, ResultType>>( | 409 | 4 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 4 | } | 411 | 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 | 398 | 6 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 6 | } else { | 407 | 6 | return creator_without_type::create< | 408 | 6 | typename Class::template T<InputType, ResultType>>( | 409 | 6 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 6 | } | 411 | 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 | 398 | 1 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 1 | } else { | 407 | 1 | return creator_without_type::create< | 408 | 1 | typename Class::template T<InputType, ResultType>>( | 409 | 1 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 1 | } | 411 | 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 | 398 | 7 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 7 | } else { | 407 | 7 | return creator_without_type::create< | 408 | 7 | typename Class::template T<InputType, ResultType>>( | 409 | 7 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 7 | } | 411 | 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 | 398 | 12 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 12 | } else { | 407 | 12 | return creator_without_type::create< | 408 | 12 | typename Class::template T<InputType, ResultType>>( | 409 | 12 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 12 | } | 411 | 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 | 398 | 18 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 18 | } else { | 407 | 18 | return creator_without_type::create< | 408 | 18 | typename Class::template T<InputType, ResultType>>( | 409 | 18 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 18 | } | 411 | 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 | 398 | 14 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 14 | } else { | 407 | 14 | return creator_without_type::create< | 408 | 14 | typename Class::template T<InputType, ResultType>>( | 409 | 14 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 14 | } | 411 | 14 | }; |
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 | 398 | 22 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 22 | } else { | 407 | 22 | return creator_without_type::create< | 408 | 22 | typename Class::template T<InputType, ResultType>>( | 409 | 22 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 22 | } | 411 | 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 | 398 | 47 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | | ResultType < InputType) { | 401 | | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | | "agg function {} error, arg type {}, result type {}", name, | 403 | | argument_types[define_index]->get_name(), | 404 | | result_type->get_name()); | 405 | | return nullptr; | 406 | 47 | } else { | 407 | 47 | return creator_without_type::create< | 408 | 47 | typename Class::template T<InputType, ResultType>>( | 409 | 47 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 47 | } | 411 | 47 | }; |
|
412 | 3.67k | AggregateFunctionPtr result = nullptr; |
413 | 3.67k | auto type = argument_types[define_index]->get_primitive_type(); |
414 | | |
415 | 3.67k | ( |
416 | 14.7k | [&] { |
417 | 14.7k | if (type == AllowedTypes) { |
418 | 3.67k | static_assert(is_decimalv3(AllowedTypes)); |
419 | 3.67k | auto call = [&](const auto& type) -> bool { |
420 | 3.67k | using DispatchType = std::decay_t<decltype(type)>; |
421 | 3.67k | result = |
422 | 3.67k | create.template operator()<AllowedTypes, DispatchType::PType>(); |
423 | 3.67k | return true; |
424 | 3.67k | }; 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 | 419 | 130 | auto call = [&](const auto& type) -> bool { | 420 | 130 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 130 | result = | 422 | 130 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 130 | return true; | 424 | 130 | }; |
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 | 419 | 1.35k | auto call = [&](const auto& type) -> bool { | 420 | 1.35k | using DispatchType = std::decay_t<decltype(type)>; | 421 | 1.35k | result = | 422 | 1.35k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 1.35k | return true; | 424 | 1.35k | }; |
_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 | 419 | 18 | auto call = [&](const auto& type) -> bool { | 420 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 18 | result = | 422 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 18 | return true; | 424 | 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 | 419 | 968 | auto call = [&](const auto& type) -> bool { | 420 | 968 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 968 | result = | 422 | 968 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 968 | return true; | 424 | 968 | }; |
_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 | 419 | 9 | auto call = [&](const auto& type) -> bool { | 420 | 9 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 9 | result = | 422 | 9 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 9 | return true; | 424 | 9 | }; |
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 | 419 | 112 | auto call = [&](const auto& type) -> bool { | 420 | 112 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 112 | result = | 422 | 112 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 112 | return true; | 424 | 112 | }; |
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 | 419 | 93 | auto call = [&](const auto& type) -> bool { | 420 | 93 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 93 | result = | 422 | 93 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 93 | return true; | 424 | 93 | }; |
_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 | 419 | 2 | auto call = [&](const auto& type) -> bool { | 420 | 2 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 2 | result = | 422 | 2 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 2 | return true; | 424 | 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 | 419 | 626 | auto call = [&](const auto& type) -> bool { | 420 | 626 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 626 | result = | 422 | 626 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 626 | return true; | 424 | 626 | }; |
_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 | 419 | 2 | auto call = [&](const auto& type) -> bool { | 420 | 2 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 2 | result = | 422 | 2 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 2 | return true; | 424 | 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 | 419 | 81 | auto call = [&](const auto& type) -> bool { | 420 | 81 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 81 | result = | 422 | 81 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 81 | return true; | 424 | 81 | }; |
_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 | 419 | 6 | auto call = [&](const auto& type) -> bool { | 420 | 6 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 6 | result = | 422 | 6 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 6 | return true; | 424 | 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 | 419 | 84 | auto call = [&](const auto& type) -> bool { | 420 | 84 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 84 | result = | 422 | 84 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 84 | return true; | 424 | 84 | }; |
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 | 419 | 18 | auto call = [&](const auto& type) -> bool { | 420 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 18 | result = | 422 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 18 | return true; | 424 | 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 | 419 | 45 | auto call = [&](const auto& type) -> bool { | 420 | 45 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 45 | result = | 422 | 45 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 45 | return true; | 424 | 45 | }; |
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 | 419 | 4 | auto call = [&](const auto& type) -> bool { | 420 | 4 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 4 | result = | 422 | 4 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 4 | return true; | 424 | 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 | 419 | 6 | auto call = [&](const auto& type) -> bool { | 420 | 6 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 6 | result = | 422 | 6 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 6 | return true; | 424 | 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 | 419 | 1 | auto call = [&](const auto& type) -> bool { | 420 | 1 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 1 | result = | 422 | 1 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 1 | return true; | 424 | 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 | 419 | 7 | auto call = [&](const auto& type) -> bool { | 420 | 7 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 7 | result = | 422 | 7 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 7 | return true; | 424 | 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 | 419 | 12 | auto call = [&](const auto& type) -> bool { | 420 | 12 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 12 | result = | 422 | 12 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 12 | return true; | 424 | 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 | 419 | 18 | auto call = [&](const auto& type) -> bool { | 420 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 18 | result = | 422 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 18 | return true; | 424 | 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 | 419 | 14 | auto call = [&](const auto& type) -> bool { | 420 | 14 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 14 | result = | 422 | 14 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 14 | return true; | 424 | 14 | }; |
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 | 419 | 22 | auto call = [&](const auto& type) -> bool { | 420 | 22 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 22 | result = | 422 | 22 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 22 | return true; | 424 | 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 | 419 | 47 | auto call = [&](const auto& type) -> bool { | 420 | 47 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 47 | result = | 422 | 47 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 47 | return true; | 424 | 47 | }; |
|
425 | 3.67k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { |
426 | 0 | throw doris::Exception( |
427 | 0 | ErrorCode::INTERNAL_ERROR, |
428 | 0 | "agg function {} error, arg type {}, result type {}", name, |
429 | 0 | argument_types[define_index]->get_name(), |
430 | 0 | result_type->get_name()); |
431 | 0 | } |
432 | 3.67k | } |
433 | 14.7k | }(), _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 | 416 | 2.58k | [&] { | 417 | 2.58k | if (type == AllowedTypes) { | 418 | 130 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 130 | auto call = [&](const auto& type) -> bool { | 420 | 130 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 130 | result = | 422 | 130 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 130 | return true; | 424 | 130 | }; | 425 | 130 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 130 | } | 433 | 2.58k | }(), |
_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 | 416 | 2.58k | [&] { | 417 | 2.58k | if (type == AllowedTypes) { | 418 | 1.36k | static_assert(is_decimalv3(AllowedTypes)); | 419 | 1.36k | auto call = [&](const auto& type) -> bool { | 420 | 1.36k | using DispatchType = std::decay_t<decltype(type)>; | 421 | 1.36k | result = | 422 | 1.36k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 1.36k | return true; | 424 | 1.36k | }; | 425 | 1.36k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 1.36k | } | 433 | 2.58k | }(), |
_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 | 416 | 2.58k | [&] { | 417 | 2.58k | if (type == AllowedTypes) { | 418 | 977 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 977 | auto call = [&](const auto& type) -> bool { | 420 | 977 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 977 | result = | 422 | 977 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 977 | return true; | 424 | 977 | }; | 425 | 977 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 977 | } | 433 | 2.58k | }(), |
_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 | 416 | 2.58k | [&] { | 417 | 2.58k | if (type == AllowedTypes) { | 418 | 112 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 112 | auto call = [&](const auto& type) -> bool { | 420 | 112 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 112 | result = | 422 | 112 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 112 | return true; | 424 | 112 | }; | 425 | 112 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 112 | } | 433 | 2.58k | }(), |
_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 | 416 | 894 | [&] { | 417 | 894 | if (type == AllowedTypes) { | 418 | 95 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 95 | auto call = [&](const auto& type) -> bool { | 420 | 95 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 95 | result = | 422 | 95 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 95 | return true; | 424 | 95 | }; | 425 | 95 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 95 | } | 433 | 894 | }(), |
_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 | 416 | 894 | [&] { | 417 | 894 | if (type == AllowedTypes) { | 418 | 628 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 628 | auto call = [&](const auto& type) -> bool { | 420 | 628 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 628 | result = | 422 | 628 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 628 | return true; | 424 | 628 | }; | 425 | 628 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 628 | } | 433 | 894 | }(), |
_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 | 416 | 894 | [&] { | 417 | 894 | if (type == AllowedTypes) { | 418 | 87 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 87 | auto call = [&](const auto& type) -> bool { | 420 | 87 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 87 | result = | 422 | 87 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 87 | return true; | 424 | 87 | }; | 425 | 87 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 87 | } | 433 | 894 | }(), |
_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 | 416 | 894 | [&] { | 417 | 894 | if (type == AllowedTypes) { | 418 | 84 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 84 | auto call = [&](const auto& type) -> bool { | 420 | 84 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 84 | result = | 422 | 84 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 84 | return true; | 424 | 84 | }; | 425 | 84 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 84 | } | 433 | 894 | }(), |
_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 | 416 | 63 | [&] { | 417 | 63 | if (type == AllowedTypes) { | 418 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 0 | auto call = [&](const auto& type) -> bool { | 420 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 0 | result = | 422 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 0 | return true; | 424 | 0 | }; | 425 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 0 | } | 433 | 63 | }(), |
_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 | 416 | 63 | [&] { | 417 | 63 | if (type == AllowedTypes) { | 418 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 0 | auto call = [&](const auto& type) -> bool { | 420 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 0 | result = | 422 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 0 | return true; | 424 | 0 | }; | 425 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 0 | } | 433 | 63 | }(), |
_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 | 416 | 63 | [&] { | 417 | 63 | if (type == AllowedTypes) { | 418 | 18 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 18 | auto call = [&](const auto& type) -> bool { | 420 | 18 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 18 | result = | 422 | 18 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 18 | return true; | 424 | 18 | }; | 425 | 18 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 18 | } | 433 | 63 | }(), |
_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 | 416 | 63 | [&] { | 417 | 63 | if (type == AllowedTypes) { | 418 | 45 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 45 | auto call = [&](const auto& type) -> bool { | 420 | 45 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 45 | result = | 422 | 45 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 45 | return true; | 424 | 45 | }; | 425 | 45 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 45 | } | 433 | 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_ENKUlvE2_clEv Line | Count | Source | 416 | 62 | [&] { | 417 | 62 | if (type == AllowedTypes) { | 418 | 10 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 10 | auto call = [&](const auto& type) -> bool { | 420 | 10 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 10 | result = | 422 | 10 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 10 | return true; | 424 | 10 | }; | 425 | 10 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 10 | } | 433 | 62 | }(), |
_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 | 416 | 62 | [&] { | 417 | 62 | if (type == AllowedTypes) { | 418 | 8 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 8 | auto call = [&](const auto& type) -> bool { | 420 | 8 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 8 | result = | 422 | 8 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 8 | return true; | 424 | 8 | }; | 425 | 8 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 8 | } | 433 | 62 | }(), |
_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 | 416 | 62 | [&] { | 417 | 62 | if (type == AllowedTypes) { | 418 | 30 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 30 | auto call = [&](const auto& type) -> bool { | 420 | 30 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 30 | result = | 422 | 30 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 30 | return true; | 424 | 30 | }; | 425 | 30 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 30 | } | 433 | 62 | }(), |
_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 | 416 | 62 | [&] { | 417 | 62 | if (type == AllowedTypes) { | 418 | 14 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 14 | auto call = [&](const auto& type) -> bool { | 420 | 14 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 14 | result = | 422 | 14 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 14 | return true; | 424 | 14 | }; | 425 | 14 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 14 | } | 433 | 62 | }(), |
_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 | 416 | 69 | [&] { | 417 | 69 | if (type == AllowedTypes) { | 418 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 0 | auto call = [&](const auto& type) -> bool { | 420 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 0 | result = | 422 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 0 | return true; | 424 | 0 | }; | 425 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 0 | } | 433 | 69 | }(), |
_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 | 416 | 69 | [&] { | 417 | 69 | if (type == AllowedTypes) { | 418 | 0 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 0 | auto call = [&](const auto& type) -> bool { | 420 | 0 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 0 | result = | 422 | 0 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 0 | return true; | 424 | 0 | }; | 425 | 0 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 0 | } | 433 | 69 | }(), |
_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 | 416 | 69 | [&] { | 417 | 69 | if (type == AllowedTypes) { | 418 | 22 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 22 | auto call = [&](const auto& type) -> bool { | 420 | 22 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 22 | result = | 422 | 22 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 22 | return true; | 424 | 22 | }; | 425 | 22 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 22 | } | 433 | 69 | }(), |
_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 | 416 | 69 | [&] { | 417 | 69 | if (type == AllowedTypes) { | 418 | 47 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 47 | auto call = [&](const auto& type) -> bool { | 420 | 47 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 47 | result = | 422 | 47 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 47 | return true; | 424 | 47 | }; | 425 | 47 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 0 | throw doris::Exception( | 427 | 0 | ErrorCode::INTERNAL_ERROR, | 428 | 0 | "agg function {} error, arg type {}, result type {}", name, | 429 | 0 | argument_types[define_index]->get_name(), | 430 | 0 | result_type->get_name()); | 431 | 0 | } | 432 | 47 | } | 433 | 69 | }(), |
|
434 | 3.67k | ...); |
435 | | |
436 | 3.67k | return result; |
437 | 3.67k | } _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 | 397 | 2.58k | TArgs&&... args) { | 398 | 2.58k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 2.58k | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 2.58k | ResultType < InputType) { | 401 | 2.58k | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 2.58k | "agg function {} error, arg type {}, result type {}", name, | 403 | 2.58k | argument_types[define_index]->get_name(), | 404 | 2.58k | result_type->get_name()); | 405 | 2.58k | return nullptr; | 406 | 2.58k | } else { | 407 | 2.58k | return creator_without_type::create< | 408 | 2.58k | typename Class::template T<InputType, ResultType>>( | 409 | 2.58k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 2.58k | } | 411 | 2.58k | }; | 412 | 2.58k | AggregateFunctionPtr result = nullptr; | 413 | 2.58k | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 2.58k | ( | 416 | 2.58k | [&] { | 417 | 2.58k | if (type == AllowedTypes) { | 418 | 2.58k | static_assert(is_decimalv3(AllowedTypes)); | 419 | 2.58k | auto call = [&](const auto& type) -> bool { | 420 | 2.58k | using DispatchType = std::decay_t<decltype(type)>; | 421 | 2.58k | result = | 422 | 2.58k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 2.58k | return true; | 424 | 2.58k | }; | 425 | 2.58k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 2.58k | throw doris::Exception( | 427 | 2.58k | ErrorCode::INTERNAL_ERROR, | 428 | 2.58k | "agg function {} error, arg type {}, result type {}", name, | 429 | 2.58k | argument_types[define_index]->get_name(), | 430 | 2.58k | result_type->get_name()); | 431 | 2.58k | } | 432 | 2.58k | } | 433 | 2.58k | }(), | 434 | 2.58k | ...); | 435 | | | 436 | 2.58k | return result; | 437 | 2.58k | } |
_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 | 397 | 894 | TArgs&&... args) { | 398 | 894 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 894 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 894 | ResultType < InputType) { | 401 | 894 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 894 | "agg function {} error, arg type {}, result type {}", name, | 403 | 894 | argument_types[define_index]->get_name(), | 404 | 894 | result_type->get_name()); | 405 | 894 | return nullptr; | 406 | 894 | } else { | 407 | 894 | return creator_without_type::create< | 408 | 894 | typename Class::template T<InputType, ResultType>>( | 409 | 894 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 894 | } | 411 | 894 | }; | 412 | 894 | AggregateFunctionPtr result = nullptr; | 413 | 894 | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 894 | ( | 416 | 894 | [&] { | 417 | 894 | if (type == AllowedTypes) { | 418 | 894 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 894 | auto call = [&](const auto& type) -> bool { | 420 | 894 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 894 | result = | 422 | 894 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 894 | return true; | 424 | 894 | }; | 425 | 894 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 894 | throw doris::Exception( | 427 | 894 | ErrorCode::INTERNAL_ERROR, | 428 | 894 | "agg function {} error, arg type {}, result type {}", name, | 429 | 894 | argument_types[define_index]->get_name(), | 430 | 894 | result_type->get_name()); | 431 | 894 | } | 432 | 894 | } | 433 | 894 | }(), | 434 | 894 | ...); | 435 | | | 436 | 894 | return result; | 437 | 894 | } |
_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 | 397 | 63 | TArgs&&... args) { | 398 | 63 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 63 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 63 | ResultType < InputType) { | 401 | 63 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 63 | "agg function {} error, arg type {}, result type {}", name, | 403 | 63 | argument_types[define_index]->get_name(), | 404 | 63 | result_type->get_name()); | 405 | 63 | return nullptr; | 406 | 63 | } else { | 407 | 63 | return creator_without_type::create< | 408 | 63 | typename Class::template T<InputType, ResultType>>( | 409 | 63 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 63 | } | 411 | 63 | }; | 412 | 63 | AggregateFunctionPtr result = nullptr; | 413 | 63 | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 63 | ( | 416 | 63 | [&] { | 417 | 63 | if (type == AllowedTypes) { | 418 | 63 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 63 | auto call = [&](const auto& type) -> bool { | 420 | 63 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 63 | result = | 422 | 63 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 63 | return true; | 424 | 63 | }; | 425 | 63 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 63 | throw doris::Exception( | 427 | 63 | ErrorCode::INTERNAL_ERROR, | 428 | 63 | "agg function {} error, arg type {}, result type {}", name, | 429 | 63 | argument_types[define_index]->get_name(), | 430 | 63 | result_type->get_name()); | 431 | 63 | } | 432 | 63 | } | 433 | 63 | }(), | 434 | 63 | ...); | 435 | | | 436 | 63 | return result; | 437 | 63 | } |
_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 | 397 | 62 | TArgs&&... args) { | 398 | 62 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 62 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 62 | ResultType < InputType) { | 401 | 62 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 62 | "agg function {} error, arg type {}, result type {}", name, | 403 | 62 | argument_types[define_index]->get_name(), | 404 | 62 | result_type->get_name()); | 405 | 62 | return nullptr; | 406 | 62 | } else { | 407 | 62 | return creator_without_type::create< | 408 | 62 | typename Class::template T<InputType, ResultType>>( | 409 | 62 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 62 | } | 411 | 62 | }; | 412 | 62 | AggregateFunctionPtr result = nullptr; | 413 | 62 | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 62 | ( | 416 | 62 | [&] { | 417 | 62 | if (type == AllowedTypes) { | 418 | 62 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 62 | auto call = [&](const auto& type) -> bool { | 420 | 62 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 62 | result = | 422 | 62 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 62 | return true; | 424 | 62 | }; | 425 | 62 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 62 | throw doris::Exception( | 427 | 62 | ErrorCode::INTERNAL_ERROR, | 428 | 62 | "agg function {} error, arg type {}, result type {}", name, | 429 | 62 | argument_types[define_index]->get_name(), | 430 | 62 | result_type->get_name()); | 431 | 62 | } | 432 | 62 | } | 433 | 62 | }(), | 434 | 62 | ...); | 435 | | | 436 | 62 | return result; | 437 | 62 | } |
_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 | 397 | 69 | TArgs&&... args) { | 398 | 69 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 69 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 69 | ResultType < InputType) { | 401 | 69 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 69 | "agg function {} error, arg type {}, result type {}", name, | 403 | 69 | argument_types[define_index]->get_name(), | 404 | 69 | result_type->get_name()); | 405 | 69 | return nullptr; | 406 | 69 | } else { | 407 | 69 | return creator_without_type::create< | 408 | 69 | typename Class::template T<InputType, ResultType>>( | 409 | 69 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 69 | } | 411 | 69 | }; | 412 | 69 | AggregateFunctionPtr result = nullptr; | 413 | 69 | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 69 | ( | 416 | 69 | [&] { | 417 | 69 | if (type == AllowedTypes) { | 418 | 69 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 69 | auto call = [&](const auto& type) -> bool { | 420 | 69 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 69 | result = | 422 | 69 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 69 | return true; | 424 | 69 | }; | 425 | 69 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 69 | throw doris::Exception( | 427 | 69 | ErrorCode::INTERNAL_ERROR, | 428 | 69 | "agg function {} error, arg type {}, result type {}", name, | 429 | 69 | argument_types[define_index]->get_name(), | 430 | 69 | result_type->get_name()); | 431 | 69 | } | 432 | 69 | } | 433 | 69 | }(), | 434 | 69 | ...); | 435 | | | 436 | 69 | return result; | 437 | 69 | } |
|
438 | | |
439 | | template <template <PrimitiveType> class AggregateFunctionTemplate> |
440 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
441 | | const DataTypePtr& result_type, |
442 | | const bool result_is_nullable, |
443 | 34.0k | const AggregateFunctionAttr& attr) { |
444 | 34.0k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, |
445 | 34.0k | result_is_nullable, attr); |
446 | 34.0k | } _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 | 443 | 15.9k | const AggregateFunctionAttr& attr) { | 444 | 15.9k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 15.9k | result_is_nullable, attr); | 446 | 15.9k | } |
_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 | 443 | 1.94k | const AggregateFunctionAttr& attr) { | 444 | 1.94k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 1.94k | result_is_nullable, attr); | 446 | 1.94k | } |
_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 | 443 | 13.5k | const AggregateFunctionAttr& attr) { | 444 | 13.5k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 13.5k | result_is_nullable, attr); | 446 | 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 | 443 | 2.03k | const AggregateFunctionAttr& attr) { | 444 | 2.03k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 2.03k | result_is_nullable, attr); | 446 | 2.03k | } |
_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 | 443 | 498 | const AggregateFunctionAttr& attr) { | 444 | 498 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 498 | result_is_nullable, attr); | 446 | 498 | } |
|
447 | | |
448 | | // Create agg function with result type from FE. |
449 | | // Currently only used for decimalv3 sum and avg. |
450 | | template <template <PrimitiveType, PrimitiveType> class AggregateFunctionTemplate> |
451 | | static AggregateFunctionPtr creator_with_result_type(const std::string& name, |
452 | | const DataTypes& argument_types, |
453 | | const DataTypePtr& result_type, |
454 | | const bool result_is_nullable, |
455 | 3.67k | const AggregateFunctionAttr& attr) { |
456 | 3.67k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( |
457 | 3.67k | name, argument_types, result_type, result_is_nullable, attr); |
458 | 3.67k | } _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 | 455 | 2.58k | const AggregateFunctionAttr& attr) { | 456 | 2.58k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 2.58k | name, argument_types, result_type, result_is_nullable, attr); | 458 | 2.58k | } |
_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 | 455 | 894 | const AggregateFunctionAttr& attr) { | 456 | 894 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 894 | name, argument_types, result_type, result_is_nullable, attr); | 458 | 894 | } |
_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 | 455 | 63 | const AggregateFunctionAttr& attr) { | 456 | 63 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 63 | name, argument_types, result_type, result_is_nullable, attr); | 458 | 63 | } |
_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 | 455 | 62 | const AggregateFunctionAttr& attr) { | 456 | 62 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 62 | name, argument_types, result_type, result_is_nullable, attr); | 458 | 62 | } |
_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 | 455 | 69 | const AggregateFunctionAttr& attr) { | 456 | 69 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 69 | name, argument_types, result_type, result_is_nullable, attr); | 458 | 69 | } |
|
459 | | |
460 | | template <template <PrimitiveType> class AggregateFunctionTemplate, typename... TArgs> |
461 | 34.8k | static AggregateFunctionPtr create(TArgs&&... args) { |
462 | 34.8k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); |
463 | 34.8k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_32AggregateFunctionDistinctNumericEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrERKS6_INS_18IAggregateFunctionEEEEESK_DpOT0_ Line | Count | Source | 461 | 2.14k | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 2.14k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 2.14k | } |
_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 | 461 | 306 | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 306 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 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 | 461 | 321 | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 321 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 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 | 461 | 221 | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 221 | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 221 | } |
_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 | 461 | 31.8k | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 31.8k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 31.8k | } |
|
464 | | |
465 | | template <template <typename> class AggregateFunctionTemplate, |
466 | | template <PrimitiveType> class Data> |
467 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
468 | | const DataTypePtr& result_type, |
469 | | const bool result_is_nullable, |
470 | | const AggregateFunctionAttr& attr) { |
471 | | return create_base<CurryData<AggregateFunctionTemplate, Data>>(argument_types, |
472 | | result_is_nullable, attr); |
473 | | } |
474 | | |
475 | | template <template <typename> class AggregateFunctionTemplate, |
476 | | template <PrimitiveType> class Data, typename... TArgs> |
477 | 3.57k | static AggregateFunctionPtr create(TArgs&&... args) { |
478 | 3.57k | return create_base<CurryData<AggregateFunctionTemplate, Data>>( |
479 | 3.57k | std::forward<TArgs>(args)...); |
480 | 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 | 477 | 12 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 12 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 12 | std::forward<TArgs>(args)...); | 480 | 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 | 477 | 432 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 432 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 432 | std::forward<TArgs>(args)...); | 480 | 432 | } |
_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 | 477 | 2 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 2 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 2 | std::forward<TArgs>(args)...); | 480 | 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 | 477 | 430 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 430 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 430 | std::forward<TArgs>(args)...); | 480 | 430 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_22AggOrthBitMapIntersectEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 3 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 3 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 3 | std::forward<TArgs>(args)...); | 480 | 3 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_27AggOrthBitMapIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 11 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 11 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 11 | std::forward<TArgs>(args)...); | 480 | 11 | } |
Unexecuted instantiation: _ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_24OrthBitmapUnionCountDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ _ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_17AggIntersectCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 442 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 442 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 442 | std::forward<TArgs>(args)...); | 480 | 442 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_20AggOrthBitMapExprCalEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 2 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 2 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 2 | std::forward<TArgs>(args)...); | 480 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi1EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_25AggFunctionOrthBitmapFuncENS_25AggOrthBitMapExprCalCountEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 2 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 2 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 2 | std::forward<TArgs>(args)...); | 480 | 2 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE6createINS_23HistogramWithInputParamENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 168 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 168 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 168 | std::forward<TArgs>(args)...); | 480 | 168 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2ELS1_3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26EEE6createINS_15HistogramNormalENS_30AggregateFunctionHistogramDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 704 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 704 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 704 | std::forward<TArgs>(args)...); | 480 | 704 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_14CorrMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 452 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 452 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 452 | std::forward<TArgs>(args)...); | 480 | 452 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_21CorrWelfordMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 26 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 26 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 26 | std::forward<TArgs>(args)...); | 480 | 26 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_8SampDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 446 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 446 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 446 | std::forward<TArgs>(args)...); | 480 | 446 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_7PopDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 442 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 442 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 442 | std::forward<TArgs>(args)...); | 480 | 442 | } |
|
481 | | |
482 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
483 | | template <PrimitiveType> class Impl> |
484 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
485 | | const DataTypePtr& result_type, |
486 | | const bool result_is_nullable, |
487 | | const AggregateFunctionAttr& attr) { |
488 | | return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>( |
489 | | argument_types, result_is_nullable, attr); |
490 | | } |
491 | | |
492 | | template <template <typename> class AggregateFunctionTemplate, template <typename> class Data, |
493 | | template <PrimitiveType> class Impl, typename... TArgs> |
494 | | static AggregateFunctionPtr create(TArgs&&... args) { |
495 | | return create_base<CurryDataImpl<AggregateFunctionTemplate, Data, Impl>>( |
496 | | std::forward<TArgs>(args)...); |
497 | | } |
498 | | |
499 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
500 | | template <PrimitiveType> class Data> |
501 | | static AggregateFunctionPtr creator(const std::string& name, const DataTypes& argument_types, |
502 | | const DataTypePtr& result_type, |
503 | | const bool result_is_nullable, |
504 | 1.80k | const AggregateFunctionAttr& attr) { |
505 | 1.80k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
506 | 1.80k | argument_types, result_is_nullable, attr); |
507 | 1.80k | } _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 | 504 | 597 | const AggregateFunctionAttr& attr) { | 505 | 597 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 597 | argument_types, result_is_nullable, attr); | 507 | 597 | } |
_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 | 504 | 597 | const AggregateFunctionAttr& attr) { | 505 | 597 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 597 | argument_types, result_is_nullable, attr); | 507 | 597 | } |
_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 | 504 | 593 | const AggregateFunctionAttr& attr) { | 505 | 593 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 593 | argument_types, result_is_nullable, attr); | 507 | 593 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_31AggregateFunctionGroupBitOrDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 504 | 7 | const AggregateFunctionAttr& attr) { | 505 | 7 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 7 | argument_types, result_is_nullable, attr); | 507 | 7 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE2EEE7creatorINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS6_IKNS_9IDataTypeEESaISK_EERKSK_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 504 | 8 | const AggregateFunctionAttr& attr) { | 505 | 8 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 8 | argument_types, result_is_nullable, attr); | 507 | 8 | } |
|
508 | | |
509 | | template <template <PrimitiveType, typename> class AggregateFunctionTemplate, |
510 | | template <PrimitiveType> class Data, typename... TArgs> |
511 | 2.00k | static AggregateFunctionPtr create(TArgs&&... args) { |
512 | 2.00k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
513 | 2.00k | std::forward<TArgs>(args)...); |
514 | 2.00k | } _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 | 511 | 1.41k | static AggregateFunctionPtr create(TArgs&&... args) { | 512 | 1.41k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 513 | 1.41k | std::forward<TArgs>(args)...); | 514 | 1.41k | } |
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 | 511 | 13 | static AggregateFunctionPtr create(TArgs&&... args) { | 512 | 13 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 513 | 13 | std::forward<TArgs>(args)...); | 514 | 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 | 511 | 579 | static AggregateFunctionPtr create(TArgs&&... args) { | 512 | 579 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 513 | 579 | std::forward<TArgs>(args)...); | 514 | 579 | } |
|
515 | | }; |
516 | | |
517 | | template <PrimitiveType... AllowedTypes> |
518 | | using creator_with_type_list = creator_with_type_list_base<0, AllowedTypes...>; |
519 | | |
520 | | } // namespace doris |
521 | | |
522 | | #include "common/compile_check_end.h" |