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 | 184k | do { \ |
42 | 184k | constexpr bool _is_new_serialized_type = \ |
43 | 184k | !std::is_same_v<decltype(&FunctionTemplate::get_serialized_type), \ |
44 | 184k | decltype(&IAggregateFunction::get_serialized_type)>; \ |
45 | 184k | if constexpr (_is_new_serialized_type) { \ |
46 | 117k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::serialize_to_column), \ |
47 | 117k | decltype(&IAggregateFunctionHelper< \ |
48 | 117k | FunctionTemplate>::serialize_to_column)>, \ |
49 | 117k | "need to override serialize_to_column"); \ |
50 | 117k | static_assert( \ |
51 | 117k | !std::is_same_v< \ |
52 | 117k | decltype(&FunctionTemplate::streaming_agg_serialize_to_column), \ |
53 | 117k | decltype(&IAggregateFunction::streaming_agg_serialize_to_column)>, \ |
54 | 117k | "need to override " \ |
55 | 117k | "streaming_agg_serialize_to_column"); \ |
56 | 117k | static_assert(!std::is_same_v<decltype(&FunctionTemplate::deserialize_and_merge_vec), \ |
57 | 117k | decltype(&IAggregateFunctionHelper< \ |
58 | 117k | FunctionTemplate>::deserialize_and_merge_vec)>, \ |
59 | 117k | "need to override deserialize_and_merge_vec"); \ |
60 | 117k | static_assert( \ |
61 | 117k | !std::is_same_v< \ |
62 | 117k | decltype(&FunctionTemplate::deserialize_and_merge_vec_selected), \ |
63 | 117k | decltype(&IAggregateFunctionHelper< \ |
64 | 117k | FunctionTemplate>::deserialize_and_merge_vec_selected)>, \ |
65 | 117k | "need to override " \ |
66 | 117k | "deserialize_and_merge_vec_selected"); \ |
67 | 117k | static_assert( \ |
68 | 117k | !std::is_same_v<decltype(&FunctionTemplate::serialize_without_key_to_column), \ |
69 | 117k | decltype(&IAggregateFunctionHelper< \ |
70 | 117k | FunctionTemplate>::serialize_without_key_to_column)>, \ |
71 | 117k | "need to override serialize_without_key_to_column"); \ |
72 | 117k | static_assert( \ |
73 | 117k | !std::is_same_v< \ |
74 | 117k | decltype(&FunctionTemplate::deserialize_and_merge_from_column_range), \ |
75 | 117k | decltype(&IAggregateFunctionHelper< \ |
76 | 117k | FunctionTemplate>::deserialize_and_merge_from_column)>, \ |
77 | 117k | "need to override " \ |
78 | 117k | "deserialize_and_merge_from_column"); \ |
79 | 117k | } \ |
80 | 184k | } 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 | 6.93k | const AggregateFunctionAttr& attr) { |
100 | 6.93k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
101 | 6.93k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); |
102 | 6.93k | } _ZN5doris20creator_without_type7creatorINS_25AggregateFunctionBitmapOpINS_30AggregateFunctionBitmapUnionOpEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS5_IKNS_9IDataTypeEESaISJ_EERKSJ_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 2.32k | const AggregateFunctionAttr& attr) { | 100 | 2.32k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 2.32k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 2.32k | } |
_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 | 448 | const AggregateFunctionAttr& attr) { | 100 | 448 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 448 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 448 | } |
_ZN5doris20creator_without_type7creatorINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEEESt10shared_ptrINS_18IAggregateFunctionEERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKSt6vectorIS7_IKNS_9IDataTypeEESaISL_EERKSL_bRKNS_21AggregateFunctionAttrE Line | Count | Source | 99 | 1.32k | const AggregateFunctionAttr& attr) { | 100 | 1.32k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 1.32k | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 1.32k | } |
_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 | 445 | const AggregateFunctionAttr& attr) { | 100 | 445 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 445 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 445 | } |
_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 | 585 | const AggregateFunctionAttr& attr) { | 100 | 585 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 101 | 585 | return create<AggregateFunctionTemplate>(argument_types, result_is_nullable, attr); | 102 | 585 | } |
_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 | 96.4k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. |
109 | 96.4k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { |
110 | 75.0k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
111 | 44.5k | return create_unary_arguments<AggregateFunctionTemplate>( |
112 | 44.5k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
113 | 44.5k | } else { |
114 | 30.4k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( |
115 | 30.4k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
116 | 30.4k | } |
117 | 75.0k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { |
118 | 7.55k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
119 | 6.46k | return create_multi_arguments<AggregateFunctionTemplate>( |
120 | 6.46k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
121 | 6.46k | } else { |
122 | 1.09k | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( |
123 | 1.09k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
124 | 1.09k | } |
125 | 13.8k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { |
126 | 13.8k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { |
127 | 7.82k | return create_varargs<AggregateFunctionTemplate>( |
128 | 7.82k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
129 | 7.82k | } else { |
130 | 6.00k | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( |
131 | 6.00k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); |
132 | 6.00k | } |
133 | | } else { |
134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, |
135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " |
136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " |
137 | | "NonNullableAggregateFunction)"); |
138 | | } |
139 | 0 | return nullptr; |
140 | 96.4k | } _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 | 82 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 82 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 82 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 82 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 82 | 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 | 82 | } |
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.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_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.23k | const AggregateFunctionAttr& attr, 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.23k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2.23k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2.23k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2.23k | 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.23k | } |
_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 | 156 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 156 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 156 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 156 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 156 | 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 | 156 | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 3.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 | 3.21k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 3.21k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 3.21k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 3.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 | 3.21k | } |
_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 | 8.12k | const AggregateFunctionAttr& attr, 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.12k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 8.12k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 8.12k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 8.12k | 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.12k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 5.39k | const AggregateFunctionAttr& attr, 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.39k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 5.39k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 5.39k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 5.39k | 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 | 5.39k | } |
_ZN5doris20creator_without_type6createINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_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_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.34k | const AggregateFunctionAttr& attr, 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.34k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2.34k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2.34k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2.34k | 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.34k | } |
_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 | 49 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 49 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 49 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 49 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 49 | 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 | 49 | } |
_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 | 503 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 503 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 503 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 503 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 503 | 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 | 503 | } |
_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.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_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 399 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 399 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 399 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 399 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 399 | 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 | 399 | } |
_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 | 206 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 206 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 206 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 206 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 206 | 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 | 206 | } |
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 | 715 | const AggregateFunctionAttr& attr, 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 | 715 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 715 | } else { | 130 | 715 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 715 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 715 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 715 | } |
_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 | 599 | const AggregateFunctionAttr& attr, 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 | 599 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 599 | } else { | 130 | 599 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 599 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 599 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 599 | } |
_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 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type6createINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ 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 | 460 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 460 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 460 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 460 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 460 | 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 | 460 | } |
_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 | 459 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 459 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 459 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 459 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 459 | 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 | 459 | } |
_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 | 459 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 459 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 459 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 459 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 459 | 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 | 459 | } |
_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.32k | const AggregateFunctionAttr& attr, 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.32k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 2.32k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 2.32k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 2.32k | 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.32k | } |
_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 | 448 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 448 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 448 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 448 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 448 | 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 | 448 | } |
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 | 449 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 449 | 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 | 449 | } else { | 114 | 449 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 449 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 449 | } | 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 | 449 | } |
_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.52k | const AggregateFunctionAttr& attr, 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.52k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 2.52k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 2.52k | return create_varargs<AggregateFunctionTemplate>( | 128 | 2.52k | 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.52k | } |
_ZN5doris20creator_without_type6createINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.52k | const AggregateFunctionAttr& attr, 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.52k | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 1.52k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 1.52k | return create_varargs<AggregateFunctionTemplate>( | 128 | 1.52k | 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.52k | } |
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 | 917 | const AggregateFunctionAttr& attr, 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 | 917 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 917 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 917 | return create_varargs<AggregateFunctionTemplate>( | 128 | 917 | 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 | 917 | } |
_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.48k | const AggregateFunctionAttr& attr, 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.48k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.48k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.48k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.48k | 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.48k | } |
_ZN5doris20creator_without_type6createINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.32k | const AggregateFunctionAttr& attr, 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.32k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.32k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.32k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.32k | 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.32k | } |
_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.13k | const AggregateFunctionAttr& attr, 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.13k | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 1.13k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 1.13k | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 1.13k | 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.13k | } |
_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 | 615 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 615 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 615 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 615 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 615 | 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 | 615 | } |
_ZN5doris20creator_without_type6createINS_21AggregateFunctionTopNINS_28AggregateFunctionTopNImplIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 467 | const AggregateFunctionAttr& attr, 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 | 467 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 467 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 467 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 467 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 467 | } |
_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 | 424 | const AggregateFunctionAttr& attr, 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 | 424 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 424 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 424 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 424 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 424 | } |
_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 | 424 | const AggregateFunctionAttr& attr, 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 | 424 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 424 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 424 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 424 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 424 | } |
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 | 48 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 48 | 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 | 48 | } else { | 114 | 48 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 48 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 48 | } | 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 | 48 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 275 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 275 | 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 | 275 | } else { | 114 | 275 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 275 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 275 | } | 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 | 275 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 194 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 194 | 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 | 194 | } else { | 114 | 194 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 194 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 194 | } | 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 | 194 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 12.0k | const AggregateFunctionAttr& attr, 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.0k | 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.0k | } else { | 114 | 12.0k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 12.0k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 12.0k | } | 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.0k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4.01k | const AggregateFunctionAttr& attr, 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.01k | 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.01k | } else { | 114 | 4.01k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4.01k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4.01k | } | 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.01k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 206 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 206 | 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 | 206 | } else { | 114 | 206 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 206 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 206 | } | 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 | 206 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_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 | | 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 | 50 | } else { | 114 | 50 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 50 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 50 | } | 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_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 114 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 114 | 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 | 114 | } else { | 114 | 114 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 114 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 114 | } | 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 | 114 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_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 | 32 | 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 | 32 | } else { | 114 | 32 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 32 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 32 | } | 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 | 32 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_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 | | 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 | 36 | } else { | 114 | 36 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 36 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 36 | } | 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_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE29EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 1.95k | const AggregateFunctionAttr& attr, 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.95k | 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.95k | } else { | 114 | 1.95k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 1.95k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 1.95k | } | 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.95k | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE30EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 692 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 692 | 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 | 692 | } else { | 114 | 692 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 692 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 692 | } | 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 | 692 | } |
_ZN5doris20creator_without_type6createINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_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 | | 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 | 34 | } else { | 114 | 34 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 34 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 34 | } | 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_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 4.92k | const AggregateFunctionAttr& attr, 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.92k | 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.92k | } else { | 114 | 4.92k | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 4.92k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 4.92k | } | 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.92k | } |
_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 | 560 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 560 | 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 | 560 | } else { | 114 | 560 | return create_unary_arguments_return_not_nullable<AggregateFunctionTemplate>( | 115 | 560 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 116 | 560 | } | 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 | 560 | } |
_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 | 743 | const AggregateFunctionAttr& attr, 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 | 743 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 743 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 743 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 743 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 743 | } |
_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.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 | | 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.68k | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 1.68k | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 1.68k | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 1.68k | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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.68k | } |
_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 | 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 | | 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 | 458 | } 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 | 458 | } else { | 122 | 458 | return create_multi_arguments_return_not_nullable<AggregateFunctionTemplate>( | 123 | 458 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 124 | 458 | } | 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_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 | 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 | | 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 | 445 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 445 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 445 | return create_varargs<AggregateFunctionTemplate>( | 128 | 445 | 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_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 | 427 | const AggregateFunctionAttr& attr, 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 | 427 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 427 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 427 | return create_varargs<AggregateFunctionTemplate>( | 128 | 427 | 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 | 427 | } |
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 | 443 | const AggregateFunctionAttr& attr, 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 | 443 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 443 | } else { | 130 | 443 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 443 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 443 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 443 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 944 | const AggregateFunctionAttr& attr, 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 | 944 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 944 | } else { | 130 | 944 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 944 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 944 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 944 | } |
_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 | 474 | const AggregateFunctionAttr& attr, 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 | 474 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 474 | } else { | 130 | 474 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 474 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 474 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 474 | } |
_ZN5doris20creator_without_type6createINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 473 | const AggregateFunctionAttr& attr, 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 | 473 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 473 | } else { | 130 | 473 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 473 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 473 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 473 | } |
_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 | 443 | const AggregateFunctionAttr& attr, 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 | 443 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | 443 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | 443 | return create_varargs<AggregateFunctionTemplate>( | 128 | 443 | 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 | 443 | } |
_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 | 443 | const AggregateFunctionAttr& attr, 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 | 443 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 443 | } else { | 130 | 443 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 443 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 443 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 443 | } |
_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 | 448 | const AggregateFunctionAttr& attr, 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 | 448 | } else if constexpr (std::is_base_of_v<VarargsExpression, AggregateFunctionTemplate>) { | 126 | | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 127 | | return create_varargs<AggregateFunctionTemplate>( | 128 | | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 129 | 448 | } else { | 130 | 448 | return create_varargs_return_not_nullable<AggregateFunctionTemplate>( | 131 | 448 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 132 | 448 | } | 133 | | } else { | 134 | | static_assert(std::is_same_v<AggregateFunctionTemplate, void>, | 135 | | "AggregateFunctionTemplate must have tag (UnaryExpression, " | 136 | | "MultiExpression or VarargsExpression) , (NullableAggregateFunction , " | 137 | | "NonNullableAggregateFunction)"); | 138 | | } | 139 | 0 | return nullptr; | 140 | 448 | } |
_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 | 585 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 108 | | // If there is a hit, it won't need to be determined at runtime, which can reduce some template instantiations. | 109 | 585 | if constexpr (std::is_base_of_v<UnaryExpression, AggregateFunctionTemplate>) { | 110 | 585 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 111 | 585 | return create_unary_arguments<AggregateFunctionTemplate>( | 112 | 585 | 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 | 585 | } |
_ZN5doris20creator_without_type6createINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 107 | 457 | const AggregateFunctionAttr& attr, 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 | 457 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 457 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 457 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 457 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 457 | } |
_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 | 447 | const AggregateFunctionAttr& attr, 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 | 447 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 447 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 447 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 447 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 447 | } |
_ZN5doris20creator_without_type6createINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_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 | 442 | } else if constexpr (std::is_base_of_v<MultiExpression, AggregateFunctionTemplate>) { | 118 | 442 | if constexpr (std::is_base_of_v<NullableAggregateFunction, AggregateFunctionTemplate>) { | 119 | 442 | return create_multi_arguments<AggregateFunctionTemplate>( | 120 | 442 | argument_types_, result_is_nullable, attr, std::forward<TArgs>(args)...); | 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 | 442 | } |
_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 | 7.82k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
147 | 7.82k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
148 | 7.82k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
149 | 7.82k | if (have_nullable(argument_types_)) { |
150 | 6.52k | std::visit( |
151 | 6.52k | [&](auto multi_arguments, auto result_is_nullable) { |
152 | 6.52k | if (attr.enable_aggregate_function_null_v2) { |
153 | 1.89k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, |
154 | 1.89k | AggregateFunctionTemplate>( |
155 | 1.89k | result.release(), argument_types_, attr.is_window_function)); |
156 | 4.63k | } else { |
157 | 4.63k | result.reset(new NullableT<multi_arguments, result_is_nullable, |
158 | 4.63k | AggregateFunctionTemplate>( |
159 | 4.63k | result.release(), argument_types_, attr.is_window_function)); |
160 | 4.63k | } |
161 | 6.52k | }, 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.53k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.53k | 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.47k | } else { | 157 | 1.47k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 1.47k | AggregateFunctionTemplate>( | 159 | 1.47k | result.release(), argument_types_, attr.is_window_function)); | 160 | 1.47k | } | 161 | 1.53k | }, |
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.47k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.47k | if (attr.enable_aggregate_function_null_v2) { | 153 | 1.47k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 1.47k | AggregateFunctionTemplate>( | 155 | 1.47k | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.47k | } 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.47k | }, |
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 | 423 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 423 | 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 | 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 | 423 | }, |
_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 | 441 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 441 | 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 | 413 | } else { | 157 | 413 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 413 | AggregateFunctionTemplate>( | 159 | 413 | result.release(), argument_types_, attr.is_window_function)); | 160 | 413 | } | 161 | 441 | }, |
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 | 836 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 836 | 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 | 773 | } else { | 157 | 773 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 773 | AggregateFunctionTemplate>( | 159 | 773 | result.release(), argument_types_, attr.is_window_function)); | 160 | 773 | } | 161 | 836 | }, |
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 | 430 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 430 | 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 | 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 | 430 | }, |
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 | 420 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 420 | 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 | 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 | 420 | }, |
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 | 428 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 428 | 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 | 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 | 428 | }, |
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.52k | make_bool_variant(argument_types_.size() > 1), |
163 | 6.52k | make_bool_variant(result_is_nullable)); |
164 | 6.52k | } |
165 | | |
166 | 7.82k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
167 | 7.82k | return AggregateFunctionPtr(result.release()); |
168 | 7.82k | } 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.52k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 2.52k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 2.52k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 2.52k | if (have_nullable(argument_types_)) { | 150 | 1.53k | std::visit( | 151 | 1.53k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.53k | if (attr.enable_aggregate_function_null_v2) { | 153 | 1.53k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 1.53k | AggregateFunctionTemplate>( | 155 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.53k | } else { | 157 | 1.53k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 1.53k | AggregateFunctionTemplate>( | 159 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 160 | 1.53k | } | 161 | 1.53k | }, | 162 | 1.53k | make_bool_variant(argument_types_.size() > 1), | 163 | 1.53k | make_bool_variant(result_is_nullable)); | 164 | 1.53k | } | 165 | | | 166 | 2.52k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 2.52k | return AggregateFunctionPtr(result.release()); | 168 | 2.52k | } |
_ZN5doris20creator_without_type14create_varargsINS_28AggregateFunctionGroupConcatINS_38AggregateFunctionGroupConcatImplStrStrEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 146 | 1.52k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 1.52k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 1.52k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 1.52k | if (have_nullable(argument_types_)) { | 150 | 1.47k | std::visit( | 151 | 1.47k | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 1.47k | if (attr.enable_aggregate_function_null_v2) { | 153 | 1.47k | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 1.47k | AggregateFunctionTemplate>( | 155 | 1.47k | result.release(), argument_types_, attr.is_window_function)); | 156 | 1.47k | } else { | 157 | 1.47k | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 1.47k | AggregateFunctionTemplate>( | 159 | 1.47k | result.release(), argument_types_, attr.is_window_function)); | 160 | 1.47k | } | 161 | 1.47k | }, | 162 | 1.47k | make_bool_variant(argument_types_.size() > 1), | 163 | 1.47k | make_bool_variant(result_is_nullable)); | 164 | 1.47k | } | 165 | | | 166 | 1.52k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 1.52k | return AggregateFunctionPtr(result.release()); | 168 | 1.52k | } |
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 | 912 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 912 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 912 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 912 | if (have_nullable(argument_types_)) { | 150 | 862 | std::visit( | 151 | 862 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 862 | if (attr.enable_aggregate_function_null_v2) { | 153 | 862 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 862 | AggregateFunctionTemplate>( | 155 | 862 | result.release(), argument_types_, attr.is_window_function)); | 156 | 862 | } else { | 157 | 862 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 862 | AggregateFunctionTemplate>( | 159 | 862 | result.release(), argument_types_, attr.is_window_function)); | 160 | 862 | } | 161 | 862 | }, | 162 | 862 | make_bool_variant(argument_types_.size() > 1), | 163 | 862 | make_bool_variant(result_is_nullable)); | 164 | 862 | } | 165 | | | 166 | 912 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 912 | return AggregateFunctionPtr(result.release()); | 168 | 912 | } |
_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 | 919 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 919 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 919 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 919 | if (have_nullable(argument_types_)) { | 150 | 839 | std::visit( | 151 | 839 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 839 | if (attr.enable_aggregate_function_null_v2) { | 153 | 839 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 839 | AggregateFunctionTemplate>( | 155 | 839 | result.release(), argument_types_, attr.is_window_function)); | 156 | 839 | } else { | 157 | 839 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 839 | AggregateFunctionTemplate>( | 159 | 839 | result.release(), argument_types_, attr.is_window_function)); | 160 | 839 | } | 161 | 839 | }, | 162 | 839 | make_bool_variant(argument_types_.size() > 1), | 163 | 839 | make_bool_variant(result_is_nullable)); | 164 | 839 | } | 165 | | | 166 | 919 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 919 | return AggregateFunctionPtr(result.release()); | 168 | 919 | } |
_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 | 445 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 445 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 445 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 445 | if (have_nullable(argument_types_)) { | 150 | 435 | std::visit( | 151 | 435 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 435 | if (attr.enable_aggregate_function_null_v2) { | 153 | 435 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 435 | AggregateFunctionTemplate>( | 155 | 435 | result.release(), argument_types_, attr.is_window_function)); | 156 | 435 | } else { | 157 | 435 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 435 | AggregateFunctionTemplate>( | 159 | 435 | result.release(), argument_types_, attr.is_window_function)); | 160 | 435 | } | 161 | 435 | }, | 162 | 435 | make_bool_variant(argument_types_.size() > 1), | 163 | 435 | make_bool_variant(result_is_nullable)); | 164 | 435 | } | 165 | | | 166 | 445 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 445 | return AggregateFunctionPtr(result.release()); | 168 | 445 | } |
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 | 427 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 147 | 427 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 148 | 427 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 149 | 427 | if (have_nullable(argument_types_)) { | 150 | 420 | std::visit( | 151 | 420 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 420 | if (attr.enable_aggregate_function_null_v2) { | 153 | 420 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 420 | AggregateFunctionTemplate>( | 155 | 420 | result.release(), argument_types_, attr.is_window_function)); | 156 | 420 | } else { | 157 | 420 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 420 | AggregateFunctionTemplate>( | 159 | 420 | result.release(), argument_types_, attr.is_window_function)); | 160 | 420 | } | 161 | 420 | }, | 162 | 420 | make_bool_variant(argument_types_.size() > 1), | 163 | 420 | make_bool_variant(result_is_nullable)); | 164 | 420 | } | 165 | | | 166 | 427 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 427 | return AggregateFunctionPtr(result.release()); | 168 | 427 | } |
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 | 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 | 428 | std::visit( | 151 | 428 | [&](auto multi_arguments, auto result_is_nullable) { | 152 | 428 | if (attr.enable_aggregate_function_null_v2) { | 153 | 428 | result.reset(new NullableV2T<multi_arguments, result_is_nullable, | 154 | 428 | AggregateFunctionTemplate>( | 155 | 428 | result.release(), argument_types_, attr.is_window_function)); | 156 | 428 | } else { | 157 | 428 | result.reset(new NullableT<multi_arguments, result_is_nullable, | 158 | 428 | AggregateFunctionTemplate>( | 159 | 428 | result.release(), argument_types_, attr.is_window_function)); | 160 | 428 | } | 161 | 428 | }, | 162 | 428 | make_bool_variant(argument_types_.size() > 1), | 163 | 428 | make_bool_variant(result_is_nullable)); | 164 | 428 | } | 165 | | | 166 | 443 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 167 | 443 | return AggregateFunctionPtr(result.release()); | 168 | 443 | } |
_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.99k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
174 | 5.99k | 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.99k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
179 | 5.99k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
180 | 5.99k | if (have_nullable(argument_types_)) { |
181 | 3.79k | if (argument_types_.size() > 1) { |
182 | 926 | 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 | 413 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
187 | 413 | result.release(), argument_types_, attr.is_window_function)); |
188 | 413 | } |
189 | 2.86k | } else { |
190 | 2.86k | if (attr.enable_aggregate_function_null_v2) { |
191 | 1.07k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
192 | 1.07k | result.release(), argument_types_, attr.is_window_function)); |
193 | 1.78k | } else { |
194 | 1.78k | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( |
195 | 1.78k | result.release(), argument_types_, attr.is_window_function)); |
196 | 1.78k | } |
197 | 2.86k | } |
198 | 3.79k | } |
199 | | |
200 | 5.99k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
201 | 5.99k | return AggregateFunctionPtr(result.release()); |
202 | 5.99k | } _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 | 640 | 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 | 640 | } else { | 190 | 640 | 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 | 413 | } else { | 194 | 413 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 413 | result.release(), argument_types_, attr.is_window_function)); | 196 | 413 | } | 197 | 640 | } | 198 | 640 | } | 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 | 598 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 598 | 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 | 598 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 598 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 598 | if (have_nullable(argument_types_)) { | 181 | 270 | 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 | 270 | } else { | 190 | 270 | if (attr.enable_aggregate_function_null_v2) { | 191 | 270 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 192 | 270 | result.release(), argument_types_, attr.is_window_function)); | 193 | 270 | } else { | 194 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 0 | result.release(), argument_types_, attr.is_window_function)); | 196 | 0 | } | 197 | 270 | } | 198 | 270 | } | 199 | | | 200 | 598 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 598 | return AggregateFunctionPtr(result.release()); | 202 | 598 | } |
_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 | } |
Unexecuted instantiation: _ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_21AggregateFunctionUniqILNS_13PrimitiveTypeE41ENS_30AggregateFunctionUniqExactDataILS3_41EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ _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 | 443 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 443 | 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 | 443 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 443 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 443 | if (have_nullable(argument_types_)) { | 181 | 433 | 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 | 433 | } else { | 190 | 433 | 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 | 413 | } else { | 194 | 413 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 413 | result.release(), argument_types_, attr.is_window_function)); | 196 | 413 | } | 197 | 433 | } | 198 | 433 | } | 199 | | | 200 | 443 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 443 | return AggregateFunctionPtr(result.release()); | 202 | 443 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb0EEELb0EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 942 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 944 | 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 | 942 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 942 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 942 | if (have_nullable(argument_types_)) { | 181 | 429 | 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 | 429 | } else { | 190 | 429 | 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 | 411 | } else { | 194 | 411 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 411 | result.release(), argument_types_, attr.is_window_function)); | 196 | 411 | } | 197 | 429 | } | 198 | 429 | } | 199 | | | 200 | 942 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 942 | return AggregateFunctionPtr(result.release()); | 202 | 942 | } |
_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 | 474 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 474 | 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 | 474 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 474 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 474 | 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 | 474 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 474 | return AggregateFunctionPtr(result.release()); | 202 | 474 | } |
_ZN5doris20creator_without_type34create_varargs_return_not_nullableINS_24AggregateFunctionCollectINS_32AggregateFunctionCollectListDataILNS_13PrimitiveTypeE5ELb1EEELb1EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 173 | 473 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 473 | 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 | 473 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 473 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 473 | 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 | 473 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 473 | return AggregateFunctionPtr(result.release()); | 202 | 473 | } |
_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 | 443 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 443 | 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 | 443 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 443 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 443 | if (have_nullable(argument_types_)) { | 181 | 429 | if (argument_types_.size() > 1) { | 182 | 429 | 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 | 413 | } else { | 186 | 413 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 187 | 413 | result.release(), argument_types_, attr.is_window_function)); | 188 | 413 | } | 189 | 429 | } 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 | 429 | } | 199 | | | 200 | 443 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 443 | return AggregateFunctionPtr(result.release()); | 202 | 443 | } |
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 | 447 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 174 | 447 | 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 | 447 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 179 | 447 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 180 | 447 | if (have_nullable(argument_types_)) { | 181 | 433 | 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 | 433 | } else { | 190 | 433 | 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 | 413 | } else { | 194 | 413 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 195 | 413 | result.release(), argument_types_, attr.is_window_function)); | 196 | 413 | } | 197 | 433 | } | 198 | 433 | } | 199 | | | 200 | 447 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 201 | 447 | return AggregateFunctionPtr(result.release()); | 202 | 447 | } |
_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.0k | TArgs&&... args) { |
209 | 10.0k | 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.0k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
214 | 10.0k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
215 | 10.0k | if (have_nullable(argument_types_)) { |
216 | 9.74k | std::visit( |
217 | 9.74k | [&](auto result_is_nullable) { |
218 | 9.74k | 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 | 8.89k | } else { |
223 | 8.89k | result.reset(new NullableT<true, result_is_nullable, |
224 | 8.89k | AggregateFunctionTemplate>( |
225 | 8.89k | result.release(), argument_types_, attr.is_window_function)); |
226 | 8.89k | } |
227 | 9.74k | }, 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 | 484 | [&](auto result_is_nullable) { | 218 | 484 | 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 | 413 | } else { | 223 | 413 | result.reset(new NullableT<true, result_is_nullable, | 224 | 413 | AggregateFunctionTemplate>( | 225 | 413 | result.release(), argument_types_, attr.is_window_function)); | 226 | 413 | } | 227 | 484 | }, |
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 | 1.78k | [&](auto result_is_nullable) { | 218 | 1.78k | 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.71k | } else { | 223 | 1.71k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.71k | AggregateFunctionTemplate>( | 225 | 1.71k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.71k | } | 227 | 1.78k | }, |
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 | 545 | [&](auto result_is_nullable) { | 218 | 545 | 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 | 542 | } else { | 223 | 542 | result.reset(new NullableT<true, result_is_nullable, | 224 | 542 | AggregateFunctionTemplate>( | 225 | 542 | result.release(), argument_types_, attr.is_window_function)); | 226 | 542 | } | 227 | 545 | }, |
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 | 307 | [&](auto result_is_nullable) { | 218 | 307 | 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 | 305 | } else { | 223 | 305 | result.reset(new NullableT<true, result_is_nullable, | 224 | 305 | AggregateFunctionTemplate>( | 225 | 305 | result.release(), argument_types_, attr.is_window_function)); | 226 | 305 | } | 227 | 307 | }, |
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 | 290 | [&](auto result_is_nullable) { | 218 | 290 | 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 | 282 | } else { | 223 | 282 | result.reset(new NullableT<true, result_is_nullable, | 224 | 282 | AggregateFunctionTemplate>( | 225 | 282 | result.release(), argument_types_, attr.is_window_function)); | 226 | 282 | } | 227 | 290 | }, |
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 | 442 | [&](auto result_is_nullable) { | 218 | 442 | 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 | 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 | 442 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSM_ _ZZN5doris20creator_without_type22create_multi_argumentsINS_21AggregateFunctionTopNINS_31AggregateFunctionTopNImplIntIntEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSM_ Line | Count | Source | 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 | 420 | [&](auto result_is_nullable) { | 218 | 420 | 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 | 413 | } else { | 223 | 413 | result.reset(new NullableT<true, result_is_nullable, | 224 | 413 | AggregateFunctionTemplate>( | 225 | 413 | result.release(), argument_types_, attr.is_window_function)); | 226 | 413 | } | 227 | 420 | }, |
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 | 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_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 | 728 | [&](auto result_is_nullable) { | 218 | 728 | 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 | 684 | } else { | 223 | 684 | result.reset(new NullableT<true, result_is_nullable, | 224 | 684 | AggregateFunctionTemplate>( | 225 | 684 | result.release(), argument_types_, attr.is_window_function)); | 226 | 684 | } | 227 | 728 | }, |
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.67k | [&](auto result_is_nullable) { | 218 | 1.67k | 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.64k | } else { | 223 | 1.64k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.64k | AggregateFunctionTemplate>( | 225 | 1.64k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.64k | } | 227 | 1.67k | }, |
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 | 495 | [&](auto result_is_nullable) { | 218 | 495 | 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 | 413 | } else { | 223 | 413 | result.reset(new NullableT<true, result_is_nullable, | 224 | 413 | AggregateFunctionTemplate>( | 225 | 413 | result.release(), argument_types_, attr.is_window_function)); | 226 | 413 | } | 227 | 495 | }, |
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 | 509 | [&](auto result_is_nullable) { | 218 | 509 | 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 | 413 | } else { | 223 | 413 | result.reset(new NullableT<true, result_is_nullable, | 224 | 413 | AggregateFunctionTemplate>( | 225 | 413 | result.release(), argument_types_, attr.is_window_function)); | 226 | 413 | } | 227 | 509 | }, |
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 | 451 | [&](auto result_is_nullable) { | 218 | 451 | 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 | 413 | } else { | 223 | 413 | result.reset(new NullableT<true, result_is_nullable, | 224 | 413 | AggregateFunctionTemplate>( | 225 | 413 | result.release(), argument_types_, attr.is_window_function)); | 226 | 413 | } | 227 | 451 | }, |
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 | 441 | [&](auto result_is_nullable) { | 218 | 441 | 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 | 413 | } else { | 223 | 413 | result.reset(new NullableT<true, result_is_nullable, | 224 | 413 | AggregateFunctionTemplate>( | 225 | 413 | result.release(), argument_types_, attr.is_window_function)); | 226 | 413 | } | 227 | 441 | }, |
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 | 433 | [&](auto result_is_nullable) { | 218 | 433 | 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 | 408 | } else { | 223 | 408 | result.reset(new NullableT<true, result_is_nullable, | 224 | 408 | AggregateFunctionTemplate>( | 225 | 408 | result.release(), argument_types_, attr.is_window_function)); | 226 | 408 | } | 227 | 433 | }, |
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 | 9.74k | make_bool_variant(result_is_nullable)); |
229 | 9.74k | } |
230 | 10.0k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
231 | 10.0k | return AggregateFunctionPtr(result.release()); |
232 | 10.0k | } 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 | 499 | TArgs&&... args) { | 209 | 499 | 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 | 499 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 499 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 499 | if (have_nullable(argument_types_)) { | 216 | 484 | std::visit( | 217 | 484 | [&](auto result_is_nullable) { | 218 | 484 | if (attr.enable_aggregate_function_null_v2) { | 219 | 484 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 484 | AggregateFunctionTemplate>( | 221 | 484 | result.release(), argument_types_, attr.is_window_function)); | 222 | 484 | } else { | 223 | 484 | result.reset(new NullableT<true, result_is_nullable, | 224 | 484 | AggregateFunctionTemplate>( | 225 | 484 | result.release(), argument_types_, attr.is_window_function)); | 226 | 484 | } | 227 | 484 | }, | 228 | 484 | make_bool_variant(result_is_nullable)); | 229 | 484 | } | 230 | 499 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 499 | return AggregateFunctionPtr(result.release()); | 232 | 499 | } |
_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 | 1.79k | TArgs&&... args) { | 209 | 1.79k | 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.79k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 1.79k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 1.79k | if (have_nullable(argument_types_)) { | 216 | 1.78k | std::visit( | 217 | 1.78k | [&](auto result_is_nullable) { | 218 | 1.78k | if (attr.enable_aggregate_function_null_v2) { | 219 | 1.78k | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1.78k | AggregateFunctionTemplate>( | 221 | 1.78k | result.release(), argument_types_, attr.is_window_function)); | 222 | 1.78k | } else { | 223 | 1.78k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.78k | AggregateFunctionTemplate>( | 225 | 1.78k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.78k | } | 227 | 1.78k | }, | 228 | 1.78k | make_bool_variant(result_is_nullable)); | 229 | 1.78k | } | 230 | 1.79k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 1.79k | return AggregateFunctionPtr(result.release()); | 232 | 1.79k | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 545 | TArgs&&... args) { | 209 | 545 | 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 | 545 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 545 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 545 | if (have_nullable(argument_types_)) { | 216 | 545 | std::visit( | 217 | 545 | [&](auto result_is_nullable) { | 218 | 545 | if (attr.enable_aggregate_function_null_v2) { | 219 | 545 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 545 | AggregateFunctionTemplate>( | 221 | 545 | result.release(), argument_types_, attr.is_window_function)); | 222 | 545 | } else { | 223 | 545 | result.reset(new NullableT<true, result_is_nullable, | 224 | 545 | AggregateFunctionTemplate>( | 225 | 545 | result.release(), argument_types_, attr.is_window_function)); | 226 | 545 | } | 227 | 545 | }, | 228 | 545 | make_bool_variant(result_is_nullable)); | 229 | 545 | } | 230 | 545 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 545 | return AggregateFunctionPtr(result.release()); | 232 | 545 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_26AggregateFunctionsMinMaxByINS_26AggregateFunctionMaxByDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 307 | TArgs&&... args) { | 209 | 307 | 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 | 307 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 307 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 307 | if (have_nullable(argument_types_)) { | 216 | 305 | std::visit( | 217 | 305 | [&](auto result_is_nullable) { | 218 | 305 | if (attr.enable_aggregate_function_null_v2) { | 219 | 305 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 305 | AggregateFunctionTemplate>( | 221 | 305 | result.release(), argument_types_, attr.is_window_function)); | 222 | 305 | } else { | 223 | 305 | result.reset(new NullableT<true, result_is_nullable, | 224 | 305 | AggregateFunctionTemplate>( | 225 | 305 | result.release(), argument_types_, attr.is_window_function)); | 226 | 305 | } | 227 | 305 | }, | 228 | 305 | make_bool_variant(result_is_nullable)); | 229 | 305 | } | 230 | 307 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 307 | return AggregateFunctionPtr(result.release()); | 232 | 307 | } |
_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 | 290 | TArgs&&... args) { | 209 | 290 | 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 | 290 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 290 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 290 | if (have_nullable(argument_types_)) { | 216 | 290 | std::visit( | 217 | 290 | [&](auto result_is_nullable) { | 218 | 290 | if (attr.enable_aggregate_function_null_v2) { | 219 | 290 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 290 | AggregateFunctionTemplate>( | 221 | 290 | result.release(), argument_types_, attr.is_window_function)); | 222 | 290 | } else { | 223 | 290 | result.reset(new NullableT<true, result_is_nullable, | 224 | 290 | AggregateFunctionTemplate>( | 225 | 290 | result.release(), argument_types_, attr.is_window_function)); | 226 | 290 | } | 227 | 290 | }, | 228 | 290 | make_bool_variant(result_is_nullable)); | 229 | 290 | } | 230 | 290 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 290 | return AggregateFunctionPtr(result.release()); | 232 | 290 | } |
_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 | 467 | TArgs&&... args) { | 209 | 467 | 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 | 467 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 467 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 467 | if (have_nullable(argument_types_)) { | 216 | 443 | std::visit( | 217 | 443 | [&](auto result_is_nullable) { | 218 | 443 | if (attr.enable_aggregate_function_null_v2) { | 219 | 443 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 443 | AggregateFunctionTemplate>( | 221 | 443 | result.release(), argument_types_, attr.is_window_function)); | 222 | 443 | } else { | 223 | 443 | result.reset(new NullableT<true, result_is_nullable, | 224 | 443 | AggregateFunctionTemplate>( | 225 | 443 | result.release(), argument_types_, attr.is_window_function)); | 226 | 443 | } | 227 | 443 | }, | 228 | 443 | make_bool_variant(result_is_nullable)); | 229 | 443 | } | 230 | 467 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 467 | return AggregateFunctionPtr(result.release()); | 232 | 467 | } |
_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 | 424 | TArgs&&... args) { | 209 | 424 | 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 | 424 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 424 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 424 | if (have_nullable(argument_types_)) { | 216 | 419 | std::visit( | 217 | 419 | [&](auto result_is_nullable) { | 218 | 419 | if (attr.enable_aggregate_function_null_v2) { | 219 | 419 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 419 | AggregateFunctionTemplate>( | 221 | 419 | result.release(), argument_types_, attr.is_window_function)); | 222 | 419 | } else { | 223 | 419 | result.reset(new NullableT<true, result_is_nullable, | 224 | 419 | AggregateFunctionTemplate>( | 225 | 419 | result.release(), argument_types_, attr.is_window_function)); | 226 | 419 | } | 227 | 419 | }, | 228 | 419 | make_bool_variant(result_is_nullable)); | 229 | 419 | } | 230 | 424 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 424 | return AggregateFunctionPtr(result.release()); | 232 | 424 | } |
_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 | 422 | TArgs&&... args) { | 209 | 422 | 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 | 422 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 422 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 422 | if (have_nullable(argument_types_)) { | 216 | 419 | std::visit( | 217 | 419 | [&](auto result_is_nullable) { | 218 | 419 | if (attr.enable_aggregate_function_null_v2) { | 219 | 419 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 419 | AggregateFunctionTemplate>( | 221 | 419 | result.release(), argument_types_, attr.is_window_function)); | 222 | 419 | } else { | 223 | 419 | result.reset(new NullableT<true, result_is_nullable, | 224 | 419 | AggregateFunctionTemplate>( | 225 | 419 | result.release(), argument_types_, attr.is_window_function)); | 226 | 419 | } | 227 | 419 | }, | 228 | 419 | make_bool_variant(result_is_nullable)); | 229 | 419 | } | 230 | 422 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 422 | return AggregateFunctionPtr(result.release()); | 232 | 422 | } |
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 | 742 | TArgs&&... args) { | 209 | 742 | 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 | 742 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 742 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 742 | if (have_nullable(argument_types_)) { | 216 | 727 | std::visit( | 217 | 727 | [&](auto result_is_nullable) { | 218 | 727 | if (attr.enable_aggregate_function_null_v2) { | 219 | 727 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 727 | AggregateFunctionTemplate>( | 221 | 727 | result.release(), argument_types_, attr.is_window_function)); | 222 | 727 | } else { | 223 | 727 | result.reset(new NullableT<true, result_is_nullable, | 224 | 727 | AggregateFunctionTemplate>( | 225 | 727 | result.release(), argument_types_, attr.is_window_function)); | 226 | 727 | } | 227 | 727 | }, | 228 | 727 | make_bool_variant(result_is_nullable)); | 229 | 727 | } | 230 | 742 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 742 | return AggregateFunctionPtr(result.release()); | 232 | 742 | } |
_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.68k | TArgs&&... args) { | 209 | 1.68k | 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.68k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 1.68k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 1.68k | if (have_nullable(argument_types_)) { | 216 | 1.67k | std::visit( | 217 | 1.67k | [&](auto result_is_nullable) { | 218 | 1.67k | if (attr.enable_aggregate_function_null_v2) { | 219 | 1.67k | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 1.67k | AggregateFunctionTemplate>( | 221 | 1.67k | result.release(), argument_types_, attr.is_window_function)); | 222 | 1.67k | } else { | 223 | 1.67k | result.reset(new NullableT<true, result_is_nullable, | 224 | 1.67k | AggregateFunctionTemplate>( | 225 | 1.67k | result.release(), argument_types_, attr.is_window_function)); | 226 | 1.67k | } | 227 | 1.67k | }, | 228 | 1.67k | make_bool_variant(result_is_nullable)); | 229 | 1.67k | } | 230 | 1.68k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 1.68k | return AggregateFunctionPtr(result.release()); | 232 | 1.68k | } |
_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 | 571 | TArgs&&... args) { | 209 | 571 | 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 | 571 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 571 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 571 | if (have_nullable(argument_types_)) { | 216 | 509 | std::visit( | 217 | 509 | [&](auto result_is_nullable) { | 218 | 509 | if (attr.enable_aggregate_function_null_v2) { | 219 | 509 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 509 | AggregateFunctionTemplate>( | 221 | 509 | result.release(), argument_types_, attr.is_window_function)); | 222 | 509 | } else { | 223 | 509 | result.reset(new NullableT<true, result_is_nullable, | 224 | 509 | AggregateFunctionTemplate>( | 225 | 509 | result.release(), argument_types_, attr.is_window_function)); | 226 | 509 | } | 227 | 509 | }, | 228 | 509 | make_bool_variant(result_is_nullable)); | 229 | 509 | } | 230 | 571 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 571 | return AggregateFunctionPtr(result.release()); | 232 | 571 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_23AggregateFunctionBinaryINS_8StatFuncILNS_13PrimitiveTypeE9ENS_10CorrMomentEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 457 | TArgs&&... args) { | 209 | 457 | 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 | 457 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 457 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 457 | if (have_nullable(argument_types_)) { | 216 | 451 | std::visit( | 217 | 451 | [&](auto result_is_nullable) { | 218 | 451 | if (attr.enable_aggregate_function_null_v2) { | 219 | 451 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 451 | AggregateFunctionTemplate>( | 221 | 451 | result.release(), argument_types_, attr.is_window_function)); | 222 | 451 | } else { | 223 | 451 | result.reset(new NullableT<true, result_is_nullable, | 224 | 451 | AggregateFunctionTemplate>( | 225 | 451 | result.release(), argument_types_, attr.is_window_function)); | 226 | 451 | } | 227 | 451 | }, | 228 | 451 | make_bool_variant(result_is_nullable)); | 229 | 451 | } | 230 | 457 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 457 | return AggregateFunctionPtr(result.release()); | 232 | 457 | } |
_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 | 447 | TArgs&&... args) { | 209 | 447 | 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 | 447 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 447 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 447 | 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 | 447 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 447 | return AggregateFunctionPtr(result.release()); | 232 | 447 | } |
_ZN5doris20creator_without_type22create_multi_argumentsINS_31AggregateFunctionSampCovarianceINS_7PopDataILNS_13PrimitiveTypeE9EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 208 | 443 | TArgs&&... args) { | 209 | 443 | 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 | 443 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 214 | 443 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 215 | 443 | if (have_nullable(argument_types_)) { | 216 | 434 | std::visit( | 217 | 434 | [&](auto result_is_nullable) { | 218 | 434 | if (attr.enable_aggregate_function_null_v2) { | 219 | 434 | result.reset(new NullableV2T<true, result_is_nullable, | 220 | 434 | AggregateFunctionTemplate>( | 221 | 434 | result.release(), argument_types_, attr.is_window_function)); | 222 | 434 | } else { | 223 | 434 | result.reset(new NullableT<true, result_is_nullable, | 224 | 434 | AggregateFunctionTemplate>( | 225 | 434 | result.release(), argument_types_, attr.is_window_function)); | 226 | 434 | } | 227 | 434 | }, | 228 | 434 | make_bool_variant(result_is_nullable)); | 229 | 434 | } | 230 | 443 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 231 | 443 | return AggregateFunctionPtr(result.release()); | 232 | 443 | } |
_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.09k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
238 | 1.09k | 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.09k | 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.09k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
249 | 1.09k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
250 | 1.09k | if (have_nullable(argument_types_)) { |
251 | 990 | 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 | 826 | } else { |
255 | 826 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( |
256 | 826 | result.release(), argument_types_, attr.is_window_function)); |
257 | 826 | } |
258 | 990 | } |
259 | 1.09k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
260 | 1.09k | return AggregateFunctionPtr(result.release()); |
261 | 1.09k | } _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 | 458 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 238 | 458 | 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 | 458 | 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 | 458 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 249 | 458 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 250 | 458 | if (have_nullable(argument_types_)) { | 251 | 452 | 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 | 413 | } else { | 255 | 413 | result.reset(new NullableT<true, false, AggregateFunctionTemplate>( | 256 | 413 | result.release(), argument_types_, attr.is_window_function)); | 257 | 413 | } | 258 | 452 | } | 259 | 458 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 260 | 458 | return AggregateFunctionPtr(result.release()); | 261 | 458 | } |
_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 | 119k | TArgs&&... args) { |
268 | 119k | 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 | 119k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
273 | 119k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
274 | 119k | if (have_nullable(argument_types_)) { |
275 | 67.7k | std::visit( |
276 | 67.7k | [&](auto result_is_nullable) { |
277 | 67.7k | if (attr.enable_aggregate_function_null_v2) { |
278 | 46.9k | result.reset(new NullableV2T<false, result_is_nullable, |
279 | 46.9k | AggregateFunctionTemplate>( |
280 | 46.9k | result.release(), argument_types_, attr.is_window_function)); |
281 | 46.9k | } else { |
282 | 20.7k | result.reset(new NullableT<false, result_is_nullable, |
283 | 20.7k | AggregateFunctionTemplate>( |
284 | 20.7k | result.release(), argument_types_, attr.is_window_function)); |
285 | 20.7k | } |
286 | 67.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 | 63 | [&](auto result_is_nullable) { | 277 | 63 | if (attr.enable_aggregate_function_null_v2) { | 278 | 63 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 63 | AggregateFunctionTemplate>( | 280 | 63 | result.release(), argument_types_, attr.is_window_function)); | 281 | 63 | } 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 | 63 | }, |
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 | 678 | [&](auto result_is_nullable) { | 277 | 678 | if (attr.enable_aggregate_function_null_v2) { | 278 | 640 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 640 | AggregateFunctionTemplate>( | 280 | 640 | result.release(), argument_types_, attr.is_window_function)); | 281 | 640 | } 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 | 678 | }, |
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 | 557 | [&](auto result_is_nullable) { | 277 | 557 | if (attr.enable_aggregate_function_null_v2) { | 278 | 432 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 432 | AggregateFunctionTemplate>( | 280 | 432 | result.release(), argument_types_, attr.is_window_function)); | 281 | 432 | } 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 | 557 | }, |
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 | 140 | [&](auto result_is_nullable) { | 277 | 140 | 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 | 104 | } else { | 282 | 104 | result.reset(new NullableT<false, result_is_nullable, | 283 | 104 | AggregateFunctionTemplate>( | 284 | 104 | result.release(), argument_types_, attr.is_window_function)); | 285 | 104 | } | 286 | 140 | }, |
_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 | 434 | [&](auto result_is_nullable) { | 277 | 434 | 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 | 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 | 434 | }, |
_ZZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSO_ Line | Count | Source | 276 | 4.43k | [&](auto result_is_nullable) { | 277 | 4.43k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.76k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.76k | AggregateFunctionTemplate>( | 280 | 3.76k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.76k | } else { | 282 | 672 | result.reset(new NullableT<false, result_is_nullable, | 283 | 672 | AggregateFunctionTemplate>( | 284 | 672 | result.release(), argument_types_, attr.is_window_function)); | 285 | 672 | } | 286 | 4.43k | }, |
_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 | 2.48k | [&](auto result_is_nullable) { | 277 | 2.48k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.01k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.01k | AggregateFunctionTemplate>( | 280 | 1.01k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.46k | } else { | 282 | 1.46k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.46k | AggregateFunctionTemplate>( | 284 | 1.46k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.46k | } | 286 | 2.48k | }, |
_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 | 696 | [&](auto result_is_nullable) { | 277 | 696 | 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 | 645 | } else { | 282 | 645 | result.reset(new NullableT<false, result_is_nullable, | 283 | 645 | AggregateFunctionTemplate>( | 284 | 645 | result.release(), argument_types_, attr.is_window_function)); | 285 | 645 | } | 286 | 696 | }, |
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.46k | [&](auto result_is_nullable) { | 277 | 1.46k | if (attr.enable_aggregate_function_null_v2) { | 278 | 264 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 264 | AggregateFunctionTemplate>( | 280 | 264 | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.19k | } else { | 282 | 1.19k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.19k | AggregateFunctionTemplate>( | 284 | 1.19k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.19k | } | 286 | 1.46k | }, |
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 | 3.59k | [&](auto result_is_nullable) { | 277 | 3.59k | if (attr.enable_aggregate_function_null_v2) { | 278 | 3.57k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 3.57k | AggregateFunctionTemplate>( | 280 | 3.57k | result.release(), argument_types_, attr.is_window_function)); | 281 | 3.57k | } 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 | 3.59k | }, |
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.78k | [&](auto result_is_nullable) { | 277 | 1.78k | 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 | 120 | result.reset(new NullableT<false, result_is_nullable, | 283 | 120 | AggregateFunctionTemplate>( | 284 | 120 | result.release(), argument_types_, attr.is_window_function)); | 285 | 120 | } | 286 | 1.78k | }, |
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 | 661 | [&](auto result_is_nullable) { | 277 | 661 | if (attr.enable_aggregate_function_null_v2) { | 278 | 524 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 524 | AggregateFunctionTemplate>( | 280 | 524 | result.release(), argument_types_, attr.is_window_function)); | 281 | 524 | } else { | 282 | 137 | result.reset(new NullableT<false, result_is_nullable, | 283 | 137 | AggregateFunctionTemplate>( | 284 | 137 | result.release(), argument_types_, attr.is_window_function)); | 285 | 137 | } | 286 | 661 | }, |
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 | 99 | [&](auto result_is_nullable) { | 277 | 99 | if (attr.enable_aggregate_function_null_v2) { | 278 | 60 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 60 | AggregateFunctionTemplate>( | 280 | 60 | result.release(), argument_types_, attr.is_window_function)); | 281 | 60 | } 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 | 99 | }, |
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 | 520 | [&](auto result_is_nullable) { | 277 | 520 | if (attr.enable_aggregate_function_null_v2) { | 278 | 242 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 242 | AggregateFunctionTemplate>( | 280 | 242 | result.release(), argument_types_, attr.is_window_function)); | 281 | 278 | } else { | 282 | 278 | result.reset(new NullableT<false, result_is_nullable, | 283 | 278 | AggregateFunctionTemplate>( | 284 | 278 | result.release(), argument_types_, attr.is_window_function)); | 285 | 278 | } | 286 | 520 | }, |
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 | 354 | [&](auto result_is_nullable) { | 277 | 354 | if (attr.enable_aggregate_function_null_v2) { | 278 | 167 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 167 | AggregateFunctionTemplate>( | 280 | 167 | result.release(), argument_types_, attr.is_window_function)); | 281 | 187 | } 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 | 354 | }, |
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 | 9.68k | [&](auto result_is_nullable) { | 277 | 9.68k | if (attr.enable_aggregate_function_null_v2) { | 278 | 8.83k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 8.83k | AggregateFunctionTemplate>( | 280 | 8.83k | result.release(), argument_types_, attr.is_window_function)); | 281 | 8.83k | } else { | 282 | 851 | result.reset(new NullableT<false, result_is_nullable, | 283 | 851 | AggregateFunctionTemplate>( | 284 | 851 | result.release(), argument_types_, attr.is_window_function)); | 285 | 851 | } | 286 | 9.68k | }, |
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 | 2.85k | [&](auto result_is_nullable) { | 277 | 2.85k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.64k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.64k | AggregateFunctionTemplate>( | 280 | 2.64k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.64k | } else { | 282 | 204 | result.reset(new NullableT<false, result_is_nullable, | 283 | 204 | AggregateFunctionTemplate>( | 284 | 204 | result.release(), argument_types_, attr.is_window_function)); | 285 | 204 | } | 286 | 2.85k | }, |
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 | 363 | [&](auto result_is_nullable) { | 277 | 363 | if (attr.enable_aggregate_function_null_v2) { | 278 | 97 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 97 | AggregateFunctionTemplate>( | 280 | 97 | result.release(), argument_types_, attr.is_window_function)); | 281 | 266 | } else { | 282 | 266 | result.reset(new NullableT<false, result_is_nullable, | 283 | 266 | AggregateFunctionTemplate>( | 284 | 266 | result.release(), argument_types_, attr.is_window_function)); | 285 | 266 | } | 286 | 363 | }, |
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 | 284 | [&](auto result_is_nullable) { | 277 | 284 | if (attr.enable_aggregate_function_null_v2) { | 278 | 100 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 100 | AggregateFunctionTemplate>( | 280 | 100 | result.release(), argument_types_, attr.is_window_function)); | 281 | 184 | } else { | 282 | 184 | result.reset(new NullableT<false, result_is_nullable, | 283 | 184 | AggregateFunctionTemplate>( | 284 | 184 | result.release(), argument_types_, attr.is_window_function)); | 285 | 184 | } | 286 | 284 | }, |
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 | 640 | [&](auto result_is_nullable) { | 277 | 640 | if (attr.enable_aggregate_function_null_v2) { | 278 | 252 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 252 | AggregateFunctionTemplate>( | 280 | 252 | result.release(), argument_types_, attr.is_window_function)); | 281 | 388 | } 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 | 640 | }, |
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 | 131 | [&](auto result_is_nullable) { | 277 | 131 | if (attr.enable_aggregate_function_null_v2) { | 278 | 77 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 77 | AggregateFunctionTemplate>( | 280 | 77 | result.release(), argument_types_, attr.is_window_function)); | 281 | 77 | } 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 | 131 | }, |
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.63k | [&](auto result_is_nullable) { | 277 | 1.63k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.58k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.58k | AggregateFunctionTemplate>( | 280 | 1.58k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.58k | } 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 | 1.63k | }, |
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 | 661 | [&](auto result_is_nullable) { | 277 | 661 | if (attr.enable_aggregate_function_null_v2) { | 278 | 618 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 618 | AggregateFunctionTemplate>( | 280 | 618 | result.release(), argument_types_, attr.is_window_function)); | 281 | 618 | } 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 | 661 | }, |
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 | 67 | [&](auto result_is_nullable) { | 277 | 67 | if (attr.enable_aggregate_function_null_v2) { | 278 | 55 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 55 | AggregateFunctionTemplate>( | 280 | 55 | result.release(), argument_types_, attr.is_window_function)); | 281 | 55 | } 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 | 67 | }, |
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 | 2.86k | [&](auto result_is_nullable) { | 277 | 2.86k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.84k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.84k | AggregateFunctionTemplate>( | 280 | 2.84k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.84k | } 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 | 2.86k | }, |
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.53k | [&](auto result_is_nullable) { | 277 | 1.53k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.48k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.48k | AggregateFunctionTemplate>( | 280 | 1.48k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.48k | } 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.53k | }, |
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 | 422 | [&](auto result_is_nullable) { | 277 | 422 | if (attr.enable_aggregate_function_null_v2) { | 278 | 364 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 364 | AggregateFunctionTemplate>( | 280 | 364 | result.release(), argument_types_, attr.is_window_function)); | 281 | 364 | } else { | 282 | 58 | result.reset(new NullableT<false, result_is_nullable, | 283 | 58 | AggregateFunctionTemplate>( | 284 | 58 | result.release(), argument_types_, attr.is_window_function)); | 285 | 58 | } | 286 | 422 | }, |
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 | 81 | [&](auto result_is_nullable) { | 277 | 81 | 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 | 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 | 81 | }, |
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 | 247 | [&](auto result_is_nullable) { | 277 | 247 | 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 | 49 | result.reset(new NullableT<false, result_is_nullable, | 283 | 49 | AggregateFunctionTemplate>( | 284 | 49 | result.release(), argument_types_, attr.is_window_function)); | 285 | 49 | } | 286 | 247 | }, |
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 | 141 | [&](auto result_is_nullable) { | 277 | 141 | if (attr.enable_aggregate_function_null_v2) { | 278 | 105 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 105 | AggregateFunctionTemplate>( | 280 | 105 | result.release(), argument_types_, attr.is_window_function)); | 281 | 105 | } 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 | 141 | }, |
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.08k | [&](auto result_is_nullable) { | 277 | 8.08k | if (attr.enable_aggregate_function_null_v2) { | 278 | 7.78k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 7.78k | AggregateFunctionTemplate>( | 280 | 7.78k | result.release(), argument_types_, attr.is_window_function)); | 281 | 7.78k | } else { | 282 | 304 | result.reset(new NullableT<false, result_is_nullable, | 283 | 304 | AggregateFunctionTemplate>( | 284 | 304 | result.release(), argument_types_, attr.is_window_function)); | 285 | 304 | } | 286 | 8.08k | }, |
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.49k | [&](auto result_is_nullable) { | 277 | 2.49k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.46k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.46k | AggregateFunctionTemplate>( | 280 | 2.46k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.46k | } 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 | 2.49k | }, |
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 | 127 | [&](auto result_is_nullable) { | 277 | 127 | if (attr.enable_aggregate_function_null_v2) { | 278 | 89 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 89 | AggregateFunctionTemplate>( | 280 | 89 | result.release(), argument_types_, attr.is_window_function)); | 281 | 89 | } 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 | 127 | }, |
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 | 104 | [&](auto result_is_nullable) { | 277 | 104 | if (attr.enable_aggregate_function_null_v2) { | 278 | 68 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 68 | AggregateFunctionTemplate>( | 280 | 68 | result.release(), argument_types_, attr.is_window_function)); | 281 | 68 | } 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 | 104 | }, |
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 | 257 | [&](auto result_is_nullable) { | 277 | 257 | if (attr.enable_aggregate_function_null_v2) { | 278 | 219 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 219 | AggregateFunctionTemplate>( | 280 | 219 | result.release(), argument_types_, attr.is_window_function)); | 281 | 219 | } 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 | 257 | }, |
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 | 80 | [&](auto result_is_nullable) { | 277 | 80 | if (attr.enable_aggregate_function_null_v2) { | 278 | 62 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 62 | AggregateFunctionTemplate>( | 280 | 62 | result.release(), argument_types_, attr.is_window_function)); | 281 | 62 | } 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 | 80 | }, |
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.57k | [&](auto result_is_nullable) { | 277 | 1.57k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.55k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.55k | AggregateFunctionTemplate>( | 280 | 1.55k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.55k | } 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.57k | }, |
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 | 606 | [&](auto result_is_nullable) { | 277 | 606 | if (attr.enable_aggregate_function_null_v2) { | 278 | 566 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 566 | AggregateFunctionTemplate>( | 280 | 566 | result.release(), argument_types_, attr.is_window_function)); | 281 | 566 | } 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 | 606 | }, |
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 | 59 | [&](auto result_is_nullable) { | 277 | 59 | 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 | 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 | 59 | }, |
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 | 120 | [&](auto result_is_nullable) { | 277 | 120 | if (attr.enable_aggregate_function_null_v2) { | 278 | 120 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 120 | AggregateFunctionTemplate>( | 280 | 120 | result.release(), argument_types_, attr.is_window_function)); | 281 | 120 | } 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 | 120 | }, |
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 | 535 | [&](auto result_is_nullable) { | 277 | 535 | 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 | 413 | } else { | 282 | 413 | result.reset(new NullableT<false, result_is_nullable, | 283 | 413 | AggregateFunctionTemplate>( | 284 | 413 | result.release(), argument_types_, attr.is_window_function)); | 285 | 413 | } | 286 | 535 | }, |
Unexecuted instantiation: _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb0EEEEDaSQ_ _ZZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionAnyDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlT_E_clISt17integral_constantIbLb1EEEEDaSQ_ Line | Count | Source | 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 | 39 | [&](auto result_is_nullable) { | 277 | 39 | if (attr.enable_aggregate_function_null_v2) { | 278 | 35 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 35 | AggregateFunctionTemplate>( | 280 | 35 | result.release(), argument_types_, attr.is_window_function)); | 281 | 35 | } 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 | 39 | }, |
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 | 33 | [&](auto result_is_nullable) { | 277 | 33 | if (attr.enable_aggregate_function_null_v2) { | 278 | 32 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 32 | AggregateFunctionTemplate>( | 280 | 32 | result.release(), argument_types_, attr.is_window_function)); | 281 | 32 | } 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 | 33 | }, |
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 | 440 | [&](auto result_is_nullable) { | 277 | 440 | if (attr.enable_aggregate_function_null_v2) { | 278 | 109 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 109 | AggregateFunctionTemplate>( | 280 | 109 | result.release(), argument_types_, attr.is_window_function)); | 281 | 331 | } else { | 282 | 331 | result.reset(new NullableT<false, result_is_nullable, | 283 | 331 | AggregateFunctionTemplate>( | 284 | 331 | result.release(), argument_types_, attr.is_window_function)); | 285 | 331 | } | 286 | 440 | }, |
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 | 357 | [&](auto result_is_nullable) { | 277 | 357 | 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 | 301 | } else { | 282 | 301 | result.reset(new NullableT<false, result_is_nullable, | 283 | 301 | AggregateFunctionTemplate>( | 284 | 301 | result.release(), argument_types_, attr.is_window_function)); | 285 | 301 | } | 286 | 357 | }, |
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 | 194 | [&](auto result_is_nullable) { | 277 | 194 | 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 | 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 | 194 | }, |
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 | 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_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 | 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_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 | 443 | [&](auto result_is_nullable) { | 277 | 443 | 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 | 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 | 443 | }, |
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 | 615 | [&](auto result_is_nullable) { | 277 | 615 | 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 | 615 | } else { | 282 | 615 | result.reset(new NullableT<false, result_is_nullable, | 283 | 615 | AggregateFunctionTemplate>( | 284 | 615 | result.release(), argument_types_, attr.is_window_function)); | 285 | 615 | } | 286 | 615 | }, |
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 | 863 | } else { | 282 | 863 | result.reset(new NullableT<false, result_is_nullable, | 283 | 863 | AggregateFunctionTemplate>( | 284 | 863 | result.release(), argument_types_, attr.is_window_function)); | 285 | 863 | } | 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 | 863 | } else { | 282 | 863 | result.reset(new NullableT<false, result_is_nullable, | 283 | 863 | AggregateFunctionTemplate>( | 284 | 863 | result.release(), argument_types_, attr.is_window_function)); | 285 | 863 | } | 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 | 863 | } else { | 282 | 863 | result.reset(new NullableT<false, result_is_nullable, | 283 | 863 | AggregateFunctionTemplate>( | 284 | 863 | result.release(), argument_types_, attr.is_window_function)); | 285 | 863 | } | 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 | 67.7k | make_bool_variant(result_is_nullable)); |
288 | 67.7k | } |
289 | 119k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
290 | 119k | return AggregateFunctionPtr(result.release()); |
291 | 119k | } _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 | 82 | TArgs&&... args) { | 268 | 82 | 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 | 82 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 82 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 82 | 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 | 82 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 82 | return AggregateFunctionPtr(result.release()); | 291 | 82 | } |
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.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 | 678 | std::visit( | 276 | 678 | [&](auto result_is_nullable) { | 277 | 678 | if (attr.enable_aggregate_function_null_v2) { | 278 | 678 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 678 | AggregateFunctionTemplate>( | 280 | 678 | result.release(), argument_types_, attr.is_window_function)); | 281 | 678 | } else { | 282 | 678 | result.reset(new NullableT<false, result_is_nullable, | 283 | 678 | AggregateFunctionTemplate>( | 284 | 678 | result.release(), argument_types_, attr.is_window_function)); | 285 | 678 | } | 286 | 678 | }, | 287 | 678 | make_bool_variant(result_is_nullable)); | 288 | 678 | } | 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_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.23k | TArgs&&... args) { | 268 | 2.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 | 2.23k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.23k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.23k | if (have_nullable(argument_types_)) { | 275 | 558 | std::visit( | 276 | 558 | [&](auto result_is_nullable) { | 277 | 558 | if (attr.enable_aggregate_function_null_v2) { | 278 | 558 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 558 | AggregateFunctionTemplate>( | 280 | 558 | result.release(), argument_types_, attr.is_window_function)); | 281 | 558 | } else { | 282 | 558 | result.reset(new NullableT<false, result_is_nullable, | 283 | 558 | AggregateFunctionTemplate>( | 284 | 558 | result.release(), argument_types_, attr.is_window_function)); | 285 | 558 | } | 286 | 558 | }, | 287 | 558 | make_bool_variant(result_is_nullable)); | 288 | 558 | } | 289 | 2.23k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.23k | return AggregateFunctionPtr(result.release()); | 291 | 2.23k | } |
_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 | 156 | TArgs&&... args) { | 268 | 156 | 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 | 156 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 156 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 156 | if (have_nullable(argument_types_)) { | 275 | 141 | std::visit( | 276 | 141 | [&](auto result_is_nullable) { | 277 | 141 | if (attr.enable_aggregate_function_null_v2) { | 278 | 141 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 141 | AggregateFunctionTemplate>( | 280 | 141 | result.release(), argument_types_, attr.is_window_function)); | 281 | 141 | } else { | 282 | 141 | result.reset(new NullableT<false, result_is_nullable, | 283 | 141 | AggregateFunctionTemplate>( | 284 | 141 | result.release(), argument_types_, attr.is_window_function)); | 285 | 141 | } | 286 | 141 | }, | 287 | 141 | make_bool_variant(result_is_nullable)); | 288 | 141 | } | 289 | 156 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 156 | return AggregateFunctionPtr(result.release()); | 291 | 156 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE3ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 3.21k | TArgs&&... args) { | 268 | 3.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 | 3.21k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 3.21k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 3.21k | 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.21k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 3.21k | return AggregateFunctionPtr(result.release()); | 291 | 3.21k | } |
_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 | 8.11k | TArgs&&... args) { | 268 | 8.11k | 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.11k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 8.11k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 8.11k | if (have_nullable(argument_types_)) { | 275 | 4.86k | std::visit( | 276 | 4.86k | [&](auto result_is_nullable) { | 277 | 4.86k | if (attr.enable_aggregate_function_null_v2) { | 278 | 4.86k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 4.86k | AggregateFunctionTemplate>( | 280 | 4.86k | result.release(), argument_types_, attr.is_window_function)); | 281 | 4.86k | } else { | 282 | 4.86k | result.reset(new NullableT<false, result_is_nullable, | 283 | 4.86k | AggregateFunctionTemplate>( | 284 | 4.86k | result.release(), argument_types_, attr.is_window_function)); | 285 | 4.86k | } | 286 | 4.86k | }, | 287 | 4.86k | make_bool_variant(result_is_nullable)); | 288 | 4.86k | } | 289 | 8.11k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 8.11k | return AggregateFunctionPtr(result.release()); | 291 | 8.11k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE6ELS3_6ENS_24AggregateFunctionSumDataILS3_6EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 5.38k | TArgs&&... args) { | 268 | 5.38k | 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.38k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.38k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.38k | if (have_nullable(argument_types_)) { | 275 | 2.48k | std::visit( | 276 | 2.48k | [&](auto result_is_nullable) { | 277 | 2.48k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.48k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.48k | AggregateFunctionTemplate>( | 280 | 2.48k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.48k | } else { | 282 | 2.48k | result.reset(new NullableT<false, result_is_nullable, | 283 | 2.48k | AggregateFunctionTemplate>( | 284 | 2.48k | result.release(), argument_types_, attr.is_window_function)); | 285 | 2.48k | } | 286 | 2.48k | }, | 287 | 2.48k | make_bool_variant(result_is_nullable)); | 288 | 2.48k | } | 289 | 5.38k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.38k | return AggregateFunctionPtr(result.release()); | 291 | 5.38k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE7ELS3_7ENS_24AggregateFunctionSumDataILS3_7EEEEEJEEESt10shared_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 | 703 | std::visit( | 276 | 703 | [&](auto result_is_nullable) { | 277 | 703 | if (attr.enable_aggregate_function_null_v2) { | 278 | 703 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 703 | AggregateFunctionTemplate>( | 280 | 703 | result.release(), argument_types_, attr.is_window_function)); | 281 | 703 | } else { | 282 | 703 | result.reset(new NullableT<false, result_is_nullable, | 283 | 703 | AggregateFunctionTemplate>( | 284 | 703 | result.release(), argument_types_, attr.is_window_function)); | 285 | 703 | } | 286 | 703 | }, | 287 | 703 | make_bool_variant(result_is_nullable)); | 288 | 703 | } | 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_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.34k | TArgs&&... args) { | 268 | 2.34k | 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.34k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.34k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.34k | if (have_nullable(argument_types_)) { | 275 | 1.46k | std::visit( | 276 | 1.46k | [&](auto result_is_nullable) { | 277 | 1.46k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.46k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.46k | AggregateFunctionTemplate>( | 280 | 1.46k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.46k | } else { | 282 | 1.46k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.46k | AggregateFunctionTemplate>( | 284 | 1.46k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.46k | } | 286 | 1.46k | }, | 287 | 1.46k | make_bool_variant(result_is_nullable)); | 288 | 1.46k | } | 289 | 2.34k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.34k | return AggregateFunctionPtr(result.release()); | 291 | 2.34k | } |
_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 | 5.77k | TArgs&&... args) { | 268 | 5.77k | 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.77k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.77k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.77k | if (have_nullable(argument_types_)) { | 275 | 3.59k | std::visit( | 276 | 3.59k | [&](auto result_is_nullable) { | 277 | 3.59k | 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 | 3.59k | result.reset(new NullableT<false, result_is_nullable, | 283 | 3.59k | AggregateFunctionTemplate>( | 284 | 3.59k | result.release(), argument_types_, attr.is_window_function)); | 285 | 3.59k | } | 286 | 3.59k | }, | 287 | 3.59k | make_bool_variant(result_is_nullable)); | 288 | 3.59k | } | 289 | 5.77k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.77k | return AggregateFunctionPtr(result.release()); | 291 | 5.77k | } |
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.10k | TArgs&&... args) { | 268 | 5.10k | 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.10k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.10k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.10k | if (have_nullable(argument_types_)) { | 275 | 1.78k | std::visit( | 276 | 1.78k | [&](auto result_is_nullable) { | 277 | 1.78k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.78k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.78k | AggregateFunctionTemplate>( | 280 | 1.78k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.78k | } else { | 282 | 1.78k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.78k | AggregateFunctionTemplate>( | 284 | 1.78k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.78k | } | 286 | 1.78k | }, | 287 | 1.78k | make_bool_variant(result_is_nullable)); | 288 | 1.78k | } | 289 | 5.10k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.10k | return AggregateFunctionPtr(result.release()); | 291 | 5.10k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.05k | TArgs&&... args) { | 268 | 1.05k | 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.05k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.05k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.05k | if (have_nullable(argument_types_)) { | 275 | 661 | std::visit( | 276 | 661 | [&](auto result_is_nullable) { | 277 | 661 | if (attr.enable_aggregate_function_null_v2) { | 278 | 661 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 661 | AggregateFunctionTemplate>( | 280 | 661 | result.release(), argument_types_, attr.is_window_function)); | 281 | 661 | } else { | 282 | 661 | result.reset(new NullableT<false, result_is_nullable, | 283 | 661 | AggregateFunctionTemplate>( | 284 | 661 | result.release(), argument_types_, attr.is_window_function)); | 285 | 661 | } | 286 | 661 | }, | 287 | 661 | make_bool_variant(result_is_nullable)); | 288 | 661 | } | 289 | 1.05k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.05k | return AggregateFunctionPtr(result.release()); | 291 | 1.05k | } |
_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 | 111 | TArgs&&... args) { | 268 | 111 | 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 | 111 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 111 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 111 | if (have_nullable(argument_types_)) { | 275 | 99 | std::visit( | 276 | 99 | [&](auto result_is_nullable) { | 277 | 99 | if (attr.enable_aggregate_function_null_v2) { | 278 | 99 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 99 | AggregateFunctionTemplate>( | 280 | 99 | result.release(), argument_types_, attr.is_window_function)); | 281 | 99 | } else { | 282 | 99 | result.reset(new NullableT<false, result_is_nullable, | 283 | 99 | AggregateFunctionTemplate>( | 284 | 99 | result.release(), argument_types_, attr.is_window_function)); | 285 | 99 | } | 286 | 99 | }, | 287 | 99 | make_bool_variant(result_is_nullable)); | 288 | 99 | } | 289 | 111 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 111 | return AggregateFunctionPtr(result.release()); | 291 | 111 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 814 | TArgs&&... args) { | 268 | 814 | 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 | 814 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 814 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 814 | if (have_nullable(argument_types_)) { | 275 | 520 | std::visit( | 276 | 520 | [&](auto result_is_nullable) { | 277 | 520 | if (attr.enable_aggregate_function_null_v2) { | 278 | 520 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 520 | AggregateFunctionTemplate>( | 280 | 520 | result.release(), argument_types_, attr.is_window_function)); | 281 | 520 | } else { | 282 | 520 | result.reset(new NullableT<false, result_is_nullable, | 283 | 520 | AggregateFunctionTemplate>( | 284 | 520 | result.release(), argument_types_, attr.is_window_function)); | 285 | 520 | } | 286 | 520 | }, | 287 | 520 | make_bool_variant(result_is_nullable)); | 288 | 520 | } | 289 | 814 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 814 | return AggregateFunctionPtr(result.release()); | 291 | 814 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 605 | TArgs&&... args) { | 268 | 605 | 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 | 605 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 605 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 605 | if (have_nullable(argument_types_)) { | 275 | 354 | std::visit( | 276 | 354 | [&](auto result_is_nullable) { | 277 | 354 | 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 | 354 | result.reset(new NullableT<false, result_is_nullable, | 283 | 354 | AggregateFunctionTemplate>( | 284 | 354 | result.release(), argument_types_, attr.is_window_function)); | 285 | 354 | } | 286 | 354 | }, | 287 | 354 | make_bool_variant(result_is_nullable)); | 288 | 354 | } | 289 | 605 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 605 | return AggregateFunctionPtr(result.release()); | 291 | 605 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 14.7k | TArgs&&... args) { | 268 | 14.7k | 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.7k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 14.7k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 14.7k | if (have_nullable(argument_types_)) { | 275 | 9.68k | std::visit( | 276 | 9.68k | [&](auto result_is_nullable) { | 277 | 9.68k | if (attr.enable_aggregate_function_null_v2) { | 278 | 9.68k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 9.68k | AggregateFunctionTemplate>( | 280 | 9.68k | result.release(), argument_types_, attr.is_window_function)); | 281 | 9.68k | } else { | 282 | 9.68k | result.reset(new NullableT<false, result_is_nullable, | 283 | 9.68k | AggregateFunctionTemplate>( | 284 | 9.68k | result.release(), argument_types_, attr.is_window_function)); | 285 | 9.68k | } | 286 | 9.68k | }, | 287 | 9.68k | make_bool_variant(result_is_nullable)); | 288 | 9.68k | } | 289 | 14.7k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 14.7k | return AggregateFunctionPtr(result.release()); | 291 | 14.7k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 4.90k | TArgs&&... args) { | 268 | 4.90k | 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.90k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4.90k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4.90k | if (have_nullable(argument_types_)) { | 275 | 2.84k | std::visit( | 276 | 2.84k | [&](auto result_is_nullable) { | 277 | 2.84k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.84k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.84k | AggregateFunctionTemplate>( | 280 | 2.84k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.84k | } else { | 282 | 2.84k | result.reset(new NullableT<false, result_is_nullable, | 283 | 2.84k | AggregateFunctionTemplate>( | 284 | 2.84k | result.release(), argument_types_, attr.is_window_function)); | 285 | 2.84k | } | 286 | 2.84k | }, | 287 | 2.84k | make_bool_variant(result_is_nullable)); | 288 | 2.84k | } | 289 | 4.90k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4.90k | return AggregateFunctionPtr(result.release()); | 291 | 4.90k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 660 | TArgs&&... args) { | 268 | 660 | 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 | 660 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 660 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 660 | if (have_nullable(argument_types_)) { | 275 | 363 | std::visit( | 276 | 363 | [&](auto result_is_nullable) { | 277 | 363 | if (attr.enable_aggregate_function_null_v2) { | 278 | 363 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 363 | AggregateFunctionTemplate>( | 280 | 363 | result.release(), argument_types_, attr.is_window_function)); | 281 | 363 | } else { | 282 | 363 | result.reset(new NullableT<false, result_is_nullable, | 283 | 363 | AggregateFunctionTemplate>( | 284 | 363 | result.release(), argument_types_, attr.is_window_function)); | 285 | 363 | } | 286 | 363 | }, | 287 | 363 | make_bool_variant(result_is_nullable)); | 288 | 363 | } | 289 | 660 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 660 | return AggregateFunctionPtr(result.release()); | 291 | 660 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 432 | TArgs&&... args) { | 268 | 432 | 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 | 432 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 432 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 432 | if (have_nullable(argument_types_)) { | 275 | 284 | std::visit( | 276 | 284 | [&](auto result_is_nullable) { | 277 | 284 | if (attr.enable_aggregate_function_null_v2) { | 278 | 284 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 284 | AggregateFunctionTemplate>( | 280 | 284 | result.release(), argument_types_, attr.is_window_function)); | 281 | 284 | } else { | 282 | 284 | result.reset(new NullableT<false, result_is_nullable, | 283 | 284 | AggregateFunctionTemplate>( | 284 | 284 | result.release(), argument_types_, attr.is_window_function)); | 285 | 284 | } | 286 | 284 | }, | 287 | 284 | make_bool_variant(result_is_nullable)); | 288 | 284 | } | 289 | 432 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 432 | return AggregateFunctionPtr(result.release()); | 291 | 432 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.01k | TArgs&&... args) { | 268 | 1.01k | 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.01k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.01k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.01k | if (have_nullable(argument_types_)) { | 275 | 640 | std::visit( | 276 | 640 | [&](auto result_is_nullable) { | 277 | 640 | if (attr.enable_aggregate_function_null_v2) { | 278 | 640 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 640 | AggregateFunctionTemplate>( | 280 | 640 | result.release(), argument_types_, attr.is_window_function)); | 281 | 640 | } else { | 282 | 640 | result.reset(new NullableT<false, result_is_nullable, | 283 | 640 | AggregateFunctionTemplate>( | 284 | 640 | result.release(), argument_types_, attr.is_window_function)); | 285 | 640 | } | 286 | 640 | }, | 287 | 640 | make_bool_variant(result_is_nullable)); | 288 | 640 | } | 289 | 1.01k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.01k | return AggregateFunctionPtr(result.release()); | 291 | 1.01k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 141 | TArgs&&... args) { | 268 | 141 | 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 | 141 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 141 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 141 | if (have_nullable(argument_types_)) { | 275 | 131 | std::visit( | 276 | 131 | [&](auto result_is_nullable) { | 277 | 131 | if (attr.enable_aggregate_function_null_v2) { | 278 | 131 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 131 | AggregateFunctionTemplate>( | 280 | 131 | result.release(), argument_types_, attr.is_window_function)); | 281 | 131 | } else { | 282 | 131 | result.reset(new NullableT<false, result_is_nullable, | 283 | 131 | AggregateFunctionTemplate>( | 284 | 131 | result.release(), argument_types_, attr.is_window_function)); | 285 | 131 | } | 286 | 131 | }, | 287 | 131 | make_bool_variant(result_is_nullable)); | 288 | 131 | } | 289 | 141 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 141 | return AggregateFunctionPtr(result.release()); | 291 | 141 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.75k | TArgs&&... args) { | 268 | 2.75k | 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.75k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.75k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.75k | if (have_nullable(argument_types_)) { | 275 | 1.63k | std::visit( | 276 | 1.63k | [&](auto result_is_nullable) { | 277 | 1.63k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.63k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.63k | AggregateFunctionTemplate>( | 280 | 1.63k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.63k | } else { | 282 | 1.63k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.63k | AggregateFunctionTemplate>( | 284 | 1.63k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.63k | } | 286 | 1.63k | }, | 287 | 1.63k | make_bool_variant(result_is_nullable)); | 288 | 1.63k | } | 289 | 2.75k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.75k | return AggregateFunctionPtr(result.release()); | 291 | 2.75k | } |
_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 | 831 | TArgs&&... args) { | 268 | 831 | 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 | 831 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 831 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 831 | if (have_nullable(argument_types_)) { | 275 | 661 | std::visit( | 276 | 661 | [&](auto result_is_nullable) { | 277 | 661 | if (attr.enable_aggregate_function_null_v2) { | 278 | 661 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 661 | AggregateFunctionTemplate>( | 280 | 661 | result.release(), argument_types_, attr.is_window_function)); | 281 | 661 | } else { | 282 | 661 | result.reset(new NullableT<false, result_is_nullable, | 283 | 661 | AggregateFunctionTemplate>( | 284 | 661 | result.release(), argument_types_, attr.is_window_function)); | 285 | 661 | } | 286 | 661 | }, | 287 | 661 | make_bool_variant(result_is_nullable)); | 288 | 661 | } | 289 | 831 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 831 | return AggregateFunctionPtr(result.release()); | 291 | 831 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMaxDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 67 | TArgs&&... args) { | 268 | 67 | 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 | 67 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 67 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 67 | if (have_nullable(argument_types_)) { | 275 | 67 | std::visit( | 276 | 67 | [&](auto result_is_nullable) { | 277 | 67 | if (attr.enable_aggregate_function_null_v2) { | 278 | 67 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 67 | AggregateFunctionTemplate>( | 280 | 67 | result.release(), argument_types_, attr.is_window_function)); | 281 | 67 | } else { | 282 | 67 | result.reset(new NullableT<false, result_is_nullable, | 283 | 67 | AggregateFunctionTemplate>( | 284 | 67 | result.release(), argument_types_, attr.is_window_function)); | 285 | 67 | } | 286 | 67 | }, | 287 | 67 | make_bool_variant(result_is_nullable)); | 288 | 67 | } | 289 | 67 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 67 | return AggregateFunctionPtr(result.release()); | 291 | 67 | } |
_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.01k | TArgs&&... args) { | 268 | 5.01k | 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.01k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 5.01k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 5.01k | if (have_nullable(argument_types_)) { | 275 | 2.86k | std::visit( | 276 | 2.86k | [&](auto result_is_nullable) { | 277 | 2.86k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.86k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.86k | AggregateFunctionTemplate>( | 280 | 2.86k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.86k | } else { | 282 | 2.86k | result.reset(new NullableT<false, result_is_nullable, | 283 | 2.86k | AggregateFunctionTemplate>( | 284 | 2.86k | result.release(), argument_types_, attr.is_window_function)); | 285 | 2.86k | } | 286 | 2.86k | }, | 287 | 2.86k | make_bool_variant(result_is_nullable)); | 288 | 2.86k | } | 289 | 5.01k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 5.01k | return AggregateFunctionPtr(result.release()); | 291 | 5.01k | } |
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.82k | TArgs&&... args) { | 268 | 4.82k | 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.82k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4.82k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4.82k | if (have_nullable(argument_types_)) { | 275 | 1.53k | std::visit( | 276 | 1.53k | [&](auto result_is_nullable) { | 277 | 1.53k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.53k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.53k | AggregateFunctionTemplate>( | 280 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.53k | } else { | 282 | 1.53k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.53k | AggregateFunctionTemplate>( | 284 | 1.53k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.53k | } | 286 | 1.53k | }, | 287 | 1.53k | make_bool_variant(result_is_nullable)); | 288 | 1.53k | } | 289 | 4.82k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4.82k | return AggregateFunctionPtr(result.release()); | 291 | 4.82k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE26EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 722 | TArgs&&... args) { | 268 | 722 | 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 | 722 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 722 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 722 | if (have_nullable(argument_types_)) { | 275 | 422 | std::visit( | 276 | 422 | [&](auto result_is_nullable) { | 277 | 422 | if (attr.enable_aggregate_function_null_v2) { | 278 | 422 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 422 | AggregateFunctionTemplate>( | 280 | 422 | result.release(), argument_types_, attr.is_window_function)); | 281 | 422 | } else { | 282 | 422 | result.reset(new NullableT<false, result_is_nullable, | 283 | 422 | AggregateFunctionTemplate>( | 284 | 422 | result.release(), argument_types_, attr.is_window_function)); | 285 | 422 | } | 286 | 422 | }, | 287 | 422 | make_bool_variant(result_is_nullable)); | 288 | 422 | } | 289 | 722 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 722 | return AggregateFunctionPtr(result.release()); | 291 | 722 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE42EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.51k | TArgs&&... args) { | 268 | 1.51k | 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.51k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.51k | 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.51k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.51k | return AggregateFunctionPtr(result.release()); | 291 | 1.51k | } |
_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 | 89 | TArgs&&... args) { | 268 | 89 | 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 | 89 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 89 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 89 | if (have_nullable(argument_types_)) { | 275 | 81 | std::visit( | 276 | 81 | [&](auto result_is_nullable) { | 277 | 81 | if (attr.enable_aggregate_function_null_v2) { | 278 | 81 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 81 | AggregateFunctionTemplate>( | 280 | 81 | result.release(), argument_types_, attr.is_window_function)); | 281 | 81 | } else { | 282 | 81 | result.reset(new NullableT<false, result_is_nullable, | 283 | 81 | AggregateFunctionTemplate>( | 284 | 81 | result.release(), argument_types_, attr.is_window_function)); | 285 | 81 | } | 286 | 81 | }, | 287 | 81 | make_bool_variant(result_is_nullable)); | 288 | 81 | } | 289 | 89 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 89 | return AggregateFunctionPtr(result.release()); | 291 | 89 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE3EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 377 | TArgs&&... args) { | 268 | 377 | 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 | 377 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 377 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 377 | if (have_nullable(argument_types_)) { | 275 | 248 | std::visit( | 276 | 248 | [&](auto result_is_nullable) { | 277 | 248 | if (attr.enable_aggregate_function_null_v2) { | 278 | 248 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 248 | AggregateFunctionTemplate>( | 280 | 248 | result.release(), argument_types_, attr.is_window_function)); | 281 | 248 | } else { | 282 | 248 | result.reset(new NullableT<false, result_is_nullable, | 283 | 248 | AggregateFunctionTemplate>( | 284 | 248 | result.release(), argument_types_, attr.is_window_function)); | 285 | 248 | } | 286 | 248 | }, | 287 | 248 | make_bool_variant(result_is_nullable)); | 288 | 248 | } | 289 | 377 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 377 | return AggregateFunctionPtr(result.release()); | 291 | 377 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE4EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 252 | TArgs&&... args) { | 268 | 252 | 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 | 252 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 252 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 252 | if (have_nullable(argument_types_)) { | 275 | 141 | std::visit( | 276 | 141 | [&](auto result_is_nullable) { | 277 | 141 | if (attr.enable_aggregate_function_null_v2) { | 278 | 141 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 141 | AggregateFunctionTemplate>( | 280 | 141 | result.release(), argument_types_, attr.is_window_function)); | 281 | 141 | } else { | 282 | 141 | result.reset(new NullableT<false, result_is_nullable, | 283 | 141 | AggregateFunctionTemplate>( | 284 | 141 | result.release(), argument_types_, attr.is_window_function)); | 285 | 141 | } | 286 | 141 | }, | 287 | 141 | make_bool_variant(result_is_nullable)); | 288 | 141 | } | 289 | 252 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 252 | return AggregateFunctionPtr(result.release()); | 291 | 252 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE5EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 12.1k | TArgs&&... args) { | 268 | 12.1k | 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 | 12.1k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 12.1k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 12.1k | if (have_nullable(argument_types_)) { | 275 | 8.08k | std::visit( | 276 | 8.08k | [&](auto result_is_nullable) { | 277 | 8.08k | if (attr.enable_aggregate_function_null_v2) { | 278 | 8.08k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 8.08k | AggregateFunctionTemplate>( | 280 | 8.08k | result.release(), argument_types_, attr.is_window_function)); | 281 | 8.08k | } else { | 282 | 8.08k | result.reset(new NullableT<false, result_is_nullable, | 283 | 8.08k | AggregateFunctionTemplate>( | 284 | 8.08k | result.release(), argument_types_, attr.is_window_function)); | 285 | 8.08k | } | 286 | 8.08k | }, | 287 | 8.08k | make_bool_variant(result_is_nullable)); | 288 | 8.08k | } | 289 | 12.1k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 12.1k | return AggregateFunctionPtr(result.release()); | 291 | 12.1k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE6EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 4.33k | TArgs&&... args) { | 268 | 4.33k | 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.33k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 4.33k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 4.33k | if (have_nullable(argument_types_)) { | 275 | 2.49k | std::visit( | 276 | 2.49k | [&](auto result_is_nullable) { | 277 | 2.49k | if (attr.enable_aggregate_function_null_v2) { | 278 | 2.49k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 2.49k | AggregateFunctionTemplate>( | 280 | 2.49k | result.release(), argument_types_, attr.is_window_function)); | 281 | 2.49k | } else { | 282 | 2.49k | result.reset(new NullableT<false, result_is_nullable, | 283 | 2.49k | AggregateFunctionTemplate>( | 284 | 2.49k | result.release(), argument_types_, attr.is_window_function)); | 285 | 2.49k | } | 286 | 2.49k | }, | 287 | 2.49k | make_bool_variant(result_is_nullable)); | 288 | 2.49k | } | 289 | 4.33k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 4.33k | return AggregateFunctionPtr(result.release()); | 291 | 4.33k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE7EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 272 | TArgs&&... args) { | 268 | 272 | 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 | 272 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 272 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 272 | if (have_nullable(argument_types_)) { | 275 | 127 | std::visit( | 276 | 127 | [&](auto result_is_nullable) { | 277 | 127 | if (attr.enable_aggregate_function_null_v2) { | 278 | 127 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 127 | AggregateFunctionTemplate>( | 280 | 127 | result.release(), argument_types_, attr.is_window_function)); | 281 | 127 | } else { | 282 | 127 | result.reset(new NullableT<false, result_is_nullable, | 283 | 127 | AggregateFunctionTemplate>( | 284 | 127 | result.release(), argument_types_, attr.is_window_function)); | 285 | 127 | } | 286 | 127 | }, | 287 | 127 | make_bool_variant(result_is_nullable)); | 288 | 127 | } | 289 | 272 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 272 | return AggregateFunctionPtr(result.release()); | 291 | 272 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE8EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 112 | TArgs&&... args) { | 268 | 112 | 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 | 112 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 112 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 112 | if (have_nullable(argument_types_)) { | 275 | 104 | std::visit( | 276 | 104 | [&](auto result_is_nullable) { | 277 | 104 | if (attr.enable_aggregate_function_null_v2) { | 278 | 104 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 104 | AggregateFunctionTemplate>( | 280 | 104 | result.release(), argument_types_, attr.is_window_function)); | 281 | 104 | } else { | 282 | 104 | result.reset(new NullableT<false, result_is_nullable, | 283 | 104 | AggregateFunctionTemplate>( | 284 | 104 | result.release(), argument_types_, attr.is_window_function)); | 285 | 104 | } | 286 | 104 | }, | 287 | 104 | make_bool_variant(result_is_nullable)); | 288 | 104 | } | 289 | 112 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 112 | return AggregateFunctionPtr(result.release()); | 291 | 112 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_20SingleValueDataFixedILNS_13PrimitiveTypeE9EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 277 | TArgs&&... args) { | 268 | 277 | 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 | 277 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 277 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 277 | if (have_nullable(argument_types_)) { | 275 | 257 | std::visit( | 276 | 257 | [&](auto result_is_nullable) { | 277 | 257 | if (attr.enable_aggregate_function_null_v2) { | 278 | 257 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 257 | AggregateFunctionTemplate>( | 280 | 257 | result.release(), argument_types_, attr.is_window_function)); | 281 | 257 | } else { | 282 | 257 | result.reset(new NullableT<false, result_is_nullable, | 283 | 257 | AggregateFunctionTemplate>( | 284 | 257 | result.release(), argument_types_, attr.is_window_function)); | 285 | 257 | } | 286 | 257 | }, | 287 | 257 | make_bool_variant(result_is_nullable)); | 288 | 257 | } | 289 | 277 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 277 | return AggregateFunctionPtr(result.release()); | 291 | 277 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE28EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 90 | TArgs&&... args) { | 268 | 90 | 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 | 90 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 90 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 90 | if (have_nullable(argument_types_)) { | 275 | 80 | std::visit( | 276 | 80 | [&](auto result_is_nullable) { | 277 | 80 | if (attr.enable_aggregate_function_null_v2) { | 278 | 80 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 80 | AggregateFunctionTemplate>( | 280 | 80 | result.release(), argument_types_, attr.is_window_function)); | 281 | 80 | } else { | 282 | 80 | result.reset(new NullableT<false, result_is_nullable, | 283 | 80 | AggregateFunctionTemplate>( | 284 | 80 | result.release(), argument_types_, attr.is_window_function)); | 285 | 80 | } | 286 | 80 | }, | 287 | 80 | make_bool_variant(result_is_nullable)); | 288 | 80 | } | 289 | 90 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 90 | return AggregateFunctionPtr(result.release()); | 291 | 90 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE29EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 2.60k | TArgs&&... args) { | 268 | 2.60k | 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.60k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.60k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.60k | 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 | 2.60k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.60k | return AggregateFunctionPtr(result.release()); | 291 | 2.60k | } |
_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 | 770 | TArgs&&... args) { | 268 | 770 | 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 | 770 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 770 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 770 | if (have_nullable(argument_types_)) { | 275 | 606 | std::visit( | 276 | 606 | [&](auto result_is_nullable) { | 277 | 606 | if (attr.enable_aggregate_function_null_v2) { | 278 | 606 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 606 | AggregateFunctionTemplate>( | 280 | 606 | result.release(), argument_types_, attr.is_window_function)); | 281 | 606 | } else { | 282 | 606 | result.reset(new NullableT<false, result_is_nullable, | 283 | 606 | AggregateFunctionTemplate>( | 284 | 606 | result.release(), argument_types_, attr.is_window_function)); | 285 | 606 | } | 286 | 606 | }, | 287 | 606 | make_bool_variant(result_is_nullable)); | 288 | 606 | } | 289 | 770 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 770 | return AggregateFunctionPtr(result.release()); | 291 | 770 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionsSingleValueINS_24AggregateFunctionMinDataINS_22SingleValueDataDecimalILNS_13PrimitiveTypeE35EEEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS9_IKNS_9IDataTypeEESaISF_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 59 | TArgs&&... args) { | 268 | 59 | 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 | 59 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 59 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 59 | if (have_nullable(argument_types_)) { | 275 | 59 | std::visit( | 276 | 59 | [&](auto result_is_nullable) { | 277 | 59 | if (attr.enable_aggregate_function_null_v2) { | 278 | 59 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 59 | AggregateFunctionTemplate>( | 280 | 59 | result.release(), argument_types_, attr.is_window_function)); | 281 | 59 | } 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 | 59 | }, | 287 | 59 | make_bool_variant(result_is_nullable)); | 288 | 59 | } | 289 | 59 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 59 | return AggregateFunctionPtr(result.release()); | 291 | 59 | } |
_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 | 155 | TArgs&&... args) { | 268 | 155 | 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 | 155 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 155 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 155 | if (have_nullable(argument_types_)) { | 275 | 120 | std::visit( | 276 | 120 | [&](auto result_is_nullable) { | 277 | 120 | if (attr.enable_aggregate_function_null_v2) { | 278 | 120 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 120 | AggregateFunctionTemplate>( | 280 | 120 | result.release(), argument_types_, attr.is_window_function)); | 281 | 120 | } else { | 282 | 120 | result.reset(new NullableT<false, result_is_nullable, | 283 | 120 | AggregateFunctionTemplate>( | 284 | 120 | result.release(), argument_types_, attr.is_window_function)); | 285 | 120 | } | 286 | 120 | }, | 287 | 120 | make_bool_variant(result_is_nullable)); | 288 | 120 | } | 289 | 155 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 155 | return AggregateFunctionPtr(result.release()); | 291 | 155 | } |
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 | 576 | TArgs&&... args) { | 268 | 576 | 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 | 576 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 576 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 576 | if (have_nullable(argument_types_)) { | 275 | 535 | std::visit( | 276 | 535 | [&](auto result_is_nullable) { | 277 | 535 | if (attr.enable_aggregate_function_null_v2) { | 278 | 535 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 535 | AggregateFunctionTemplate>( | 280 | 535 | result.release(), argument_types_, attr.is_window_function)); | 281 | 535 | } else { | 282 | 535 | result.reset(new NullableT<false, result_is_nullable, | 283 | 535 | AggregateFunctionTemplate>( | 284 | 535 | result.release(), argument_types_, attr.is_window_function)); | 285 | 535 | } | 286 | 535 | }, | 287 | 535 | make_bool_variant(result_is_nullable)); | 288 | 535 | } | 289 | 576 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 576 | return AggregateFunctionPtr(result.release()); | 291 | 576 | } |
_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 | 49 | TArgs&&... args) { | 268 | 49 | 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 | 49 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 49 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 49 | if (have_nullable(argument_types_)) { | 275 | 39 | std::visit( | 276 | 39 | [&](auto result_is_nullable) { | 277 | 39 | 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 | 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 | 39 | }, | 287 | 39 | make_bool_variant(result_is_nullable)); | 288 | 39 | } | 289 | 49 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 49 | return AggregateFunctionPtr(result.release()); | 291 | 49 | } |
_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 | 503 | TArgs&&... args) { | 268 | 503 | 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 | 503 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 503 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 503 | if (have_nullable(argument_types_)) { | 275 | 33 | std::visit( | 276 | 33 | [&](auto result_is_nullable) { | 277 | 33 | 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 | 33 | } else { | 282 | 33 | result.reset(new NullableT<false, result_is_nullable, | 283 | 33 | AggregateFunctionTemplate>( | 284 | 33 | result.release(), argument_types_, attr.is_window_function)); | 285 | 33 | } | 286 | 33 | }, | 287 | 33 | make_bool_variant(result_is_nullable)); | 288 | 33 | } | 289 | 503 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 503 | return AggregateFunctionPtr(result.release()); | 291 | 503 | } |
_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.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 | 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 | 1.21k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.21k | return AggregateFunctionPtr(result.release()); | 291 | 1.21k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionAvgILNS_13PrimitiveTypeE6ELS3_9ENS_24AggregateFunctionAvgDataILS3_7EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 398 | TArgs&&... args) { | 268 | 398 | 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 | 398 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 398 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 398 | 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 | 398 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 398 | return AggregateFunctionPtr(result.release()); | 291 | 398 | } |
_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 | 206 | TArgs&&... args) { | 268 | 206 | 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 | 206 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 206 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 206 | if (have_nullable(argument_types_)) { | 275 | 194 | std::visit( | 276 | 194 | [&](auto result_is_nullable) { | 277 | 194 | if (attr.enable_aggregate_function_null_v2) { | 278 | 194 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 194 | AggregateFunctionTemplate>( | 280 | 194 | result.release(), argument_types_, attr.is_window_function)); | 281 | 194 | } else { | 282 | 194 | result.reset(new NullableT<false, result_is_nullable, | 283 | 194 | AggregateFunctionTemplate>( | 284 | 194 | result.release(), argument_types_, attr.is_window_function)); | 285 | 194 | } | 286 | 194 | }, | 287 | 194 | make_bool_variant(result_is_nullable)); | 288 | 194 | } | 289 | 206 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 206 | return AggregateFunctionPtr(result.release()); | 291 | 206 | } |
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 | 460 | TArgs&&... args) { | 268 | 460 | 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 | 460 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 460 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 460 | 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 | 460 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 460 | return AggregateFunctionPtr(result.release()); | 291 | 460 | } |
_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 | 459 | TArgs&&... args) { | 268 | 459 | 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 | 459 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 459 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 459 | 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 | 459 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 459 | return AggregateFunctionPtr(result.release()); | 291 | 459 | } |
_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 | 459 | TArgs&&... args) { | 268 | 459 | 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 | 459 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 459 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 459 | 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 | 459 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 459 | return AggregateFunctionPtr(result.release()); | 291 | 459 | } |
_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.32k | TArgs&&... args) { | 268 | 2.32k | 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.32k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 2.32k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 2.32k | 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.32k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 2.32k | return AggregateFunctionPtr(result.release()); | 291 | 2.32k | } |
_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 | 449 | TArgs&&... args) { | 268 | 449 | 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 | 449 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 449 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 449 | 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 | 449 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 449 | return AggregateFunctionPtr(result.release()); | 291 | 449 | } |
_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 | 980 | TArgs&&... args) { | 268 | 980 | 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 | 980 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 980 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 980 | 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 | 980 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 980 | return AggregateFunctionPtr(result.release()); | 291 | 980 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE5ELS3_5ENS_24AggregateFunctionSumDataILS3_5EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.20k | TArgs&&... args) { | 268 | 1.20k | 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.20k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.20k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.20k | if (have_nullable(argument_types_)) { | 275 | 616 | std::visit( | 276 | 616 | [&](auto result_is_nullable) { | 277 | 616 | if (attr.enable_aggregate_function_null_v2) { | 278 | 616 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 616 | AggregateFunctionTemplate>( | 280 | 616 | result.release(), argument_types_, attr.is_window_function)); | 281 | 616 | } else { | 282 | 616 | result.reset(new NullableT<false, result_is_nullable, | 283 | 616 | AggregateFunctionTemplate>( | 284 | 616 | result.release(), argument_types_, attr.is_window_function)); | 285 | 616 | } | 286 | 616 | }, | 287 | 616 | make_bool_variant(result_is_nullable)); | 288 | 616 | } | 289 | 1.20k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.20k | return AggregateFunctionPtr(result.release()); | 291 | 1.20k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_20AggregateFunctionSumILNS_13PrimitiveTypeE8ELS3_8ENS_24AggregateFunctionSumDataILS3_8EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.48k | TArgs&&... args) { | 268 | 1.48k | 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.48k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.48k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.48k | 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.48k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.48k | return AggregateFunctionPtr(result.release()); | 291 | 1.48k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_29AggregateFunctionHLLUnionImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 1.32k | TArgs&&... args) { | 268 | 1.32k | 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.32k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.32k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.32k | 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.32k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.32k | return AggregateFunctionPtr(result.release()); | 291 | 1.32k | } |
_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.07k | TArgs&&... args) { | 268 | 1.07k | 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.07k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.07k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.07k | if (have_nullable(argument_types_)) { | 275 | 1.01k | std::visit( | 276 | 1.01k | [&](auto result_is_nullable) { | 277 | 1.01k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.01k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.01k | AggregateFunctionTemplate>( | 280 | 1.01k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.01k | } else { | 282 | 1.01k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.01k | AggregateFunctionTemplate>( | 284 | 1.01k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.01k | } | 286 | 1.01k | }, | 287 | 1.01k | make_bool_variant(result_is_nullable)); | 288 | 1.01k | } | 289 | 1.07k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.07k | return AggregateFunctionPtr(result.release()); | 291 | 1.07k | } |
_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.06k | std::visit( | 276 | 1.06k | [&](auto result_is_nullable) { | 277 | 1.06k | if (attr.enable_aggregate_function_null_v2) { | 278 | 1.06k | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 1.06k | AggregateFunctionTemplate>( | 280 | 1.06k | result.release(), argument_types_, attr.is_window_function)); | 281 | 1.06k | } else { | 282 | 1.06k | result.reset(new NullableT<false, result_is_nullable, | 283 | 1.06k | AggregateFunctionTemplate>( | 284 | 1.06k | result.release(), argument_types_, attr.is_window_function)); | 285 | 1.06k | } | 286 | 1.06k | }, | 287 | 1.06k | make_bool_variant(result_is_nullable)); | 288 | 1.06k | } | 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.09k | TArgs&&... args) { | 268 | 1.09k | 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.09k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 1.09k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 1.09k | 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.09k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 1.09k | return AggregateFunctionPtr(result.release()); | 291 | 1.09k | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_29AggregateFunctionSampVarianceINS_8SampDataILNS_13PrimitiveTypeE9ENS_14StddevSampNameELb1EEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_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 | 556 | std::visit( | 276 | 556 | [&](auto result_is_nullable) { | 277 | 556 | if (attr.enable_aggregate_function_null_v2) { | 278 | 556 | result.reset(new NullableV2T<false, result_is_nullable, | 279 | 556 | AggregateFunctionTemplate>( | 280 | 556 | result.release(), argument_types_, attr.is_window_function)); | 281 | 556 | } else { | 282 | 556 | result.reset(new NullableT<false, result_is_nullable, | 283 | 556 | AggregateFunctionTemplate>( | 284 | 556 | result.release(), argument_types_, attr.is_window_function)); | 285 | 556 | } | 286 | 556 | }, | 287 | 556 | make_bool_variant(result_is_nullable)); | 288 | 556 | } | 289 | 615 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 615 | return AggregateFunctionPtr(result.release()); | 291 | 615 | } |
_ZN5doris20creator_without_type22create_unary_argumentsINS_25AggregateFunctionHLLUnionINS_32AggregateFunctionHLLUnionAggImplINS_24AggregateFunctionHLLDataEEEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS7_IKNS_9IDataTypeEESaISD_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 267 | 585 | TArgs&&... args) { | 268 | 585 | 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 | 585 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 273 | 585 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 274 | 585 | 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 | 585 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 290 | 585 | return AggregateFunctionPtr(result.release()); | 291 | 585 | } |
_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 | 30.4k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
297 | 30.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 | 30.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 | 30.4k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( |
307 | 30.4k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); |
308 | 30.4k | if (have_nullable(argument_types_)) { |
309 | 17.0k | if (attr.enable_aggregate_function_null_v2) { |
310 | 15.9k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( |
311 | 15.9k | result.release(), argument_types_, attr.is_window_function)); |
312 | 15.9k | } 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 | 17.0k | } |
317 | 30.4k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
318 | 30.4k | return AggregateFunctionPtr(result.release()); |
319 | 30.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 | 449 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 449 | 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 | 449 | 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 | 449 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 449 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 449 | 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 | 449 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 449 | return AggregateFunctionPtr(result.release()); | 319 | 449 | } |
_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 | 48 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 48 | 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 | 48 | 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 | 48 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 48 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 48 | 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 | 48 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 48 | return AggregateFunctionPtr(result.release()); | 319 | 48 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE3EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 275 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 275 | 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 | 275 | 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 | 275 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 275 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 275 | if (have_nullable(argument_types_)) { | 309 | 167 | if (attr.enable_aggregate_function_null_v2) { | 310 | 167 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 167 | result.release(), argument_types_, attr.is_window_function)); | 312 | 167 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 167 | } | 317 | 275 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 275 | return AggregateFunctionPtr(result.release()); | 319 | 275 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE4EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 194 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 194 | 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 | 194 | 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 | 194 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 194 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 194 | if (have_nullable(argument_types_)) { | 309 | 87 | if (attr.enable_aggregate_function_null_v2) { | 310 | 87 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 87 | result.release(), argument_types_, attr.is_window_function)); | 312 | 87 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 87 | } | 317 | 194 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 194 | return AggregateFunctionPtr(result.release()); | 319 | 194 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE5EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 12.0k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 12.0k | 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.0k | 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.0k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 12.0k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 12.0k | if (have_nullable(argument_types_)) { | 309 | 8.02k | if (attr.enable_aggregate_function_null_v2) { | 310 | 6.89k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 6.89k | result.release(), argument_types_, attr.is_window_function)); | 312 | 6.89k | } 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.02k | } | 317 | 12.0k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 12.0k | return AggregateFunctionPtr(result.release()); | 319 | 12.0k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE6EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4.00k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4.00k | 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.00k | 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.00k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4.00k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4.00k | if (have_nullable(argument_types_)) { | 309 | 2.28k | if (attr.enable_aggregate_function_null_v2) { | 310 | 2.28k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 2.28k | result.release(), argument_types_, attr.is_window_function)); | 312 | 2.28k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 2.28k | } | 317 | 4.00k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4.00k | return AggregateFunctionPtr(result.release()); | 319 | 4.00k | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE7EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 206 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 206 | 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 | 206 | 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 | 206 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 206 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 206 | if (have_nullable(argument_types_)) { | 309 | 79 | if (attr.enable_aggregate_function_null_v2) { | 310 | 79 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 79 | result.release(), argument_types_, attr.is_window_function)); | 312 | 79 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 79 | } | 317 | 206 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 206 | return AggregateFunctionPtr(result.release()); | 319 | 206 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE8EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 50 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 50 | 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 | 50 | 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 | 50 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 50 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 50 | if (have_nullable(argument_types_)) { | 309 | 46 | if (attr.enable_aggregate_function_null_v2) { | 310 | 46 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 46 | result.release(), argument_types_, attr.is_window_function)); | 312 | 46 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 46 | } | 317 | 50 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 50 | return AggregateFunctionPtr(result.release()); | 319 | 50 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE9EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 114 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 114 | 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 | 114 | 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 | 114 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 114 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 114 | if (have_nullable(argument_types_)) { | 309 | 98 | if (attr.enable_aggregate_function_null_v2) { | 310 | 98 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 98 | result.release(), argument_types_, attr.is_window_function)); | 312 | 98 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 98 | } | 317 | 114 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 114 | return AggregateFunctionPtr(result.release()); | 319 | 114 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE20EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 32 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 32 | 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 | 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 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 32 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 32 | if (have_nullable(argument_types_)) { | 309 | 32 | if (attr.enable_aggregate_function_null_v2) { | 310 | 32 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 32 | result.release(), argument_types_, attr.is_window_function)); | 312 | 32 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 32 | } | 317 | 32 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 32 | return AggregateFunctionPtr(result.release()); | 319 | 32 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE28EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 36 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 36 | 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 | 36 | 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 | 36 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 36 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 36 | if (have_nullable(argument_types_)) { | 309 | 32 | if (attr.enable_aggregate_function_null_v2) { | 310 | 32 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 32 | result.release(), argument_types_, attr.is_window_function)); | 312 | 32 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 32 | } | 317 | 36 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 36 | return AggregateFunctionPtr(result.release()); | 319 | 36 | } |
_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.95k | 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.09k | if (attr.enable_aggregate_function_null_v2) { | 310 | 1.09k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 1.09k | result.release(), argument_types_, attr.is_window_function)); | 312 | 1.09k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 1.09k | } | 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 | 692 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 692 | 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 | 692 | 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 | 692 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 692 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 692 | if (have_nullable(argument_types_)) { | 309 | 532 | if (attr.enable_aggregate_function_null_v2) { | 310 | 532 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 532 | result.release(), argument_types_, attr.is_window_function)); | 312 | 532 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 532 | } | 317 | 692 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 692 | return AggregateFunctionPtr(result.release()); | 319 | 692 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE35EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 34 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 34 | 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 | 34 | 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 | 34 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 34 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 34 | if (have_nullable(argument_types_)) { | 309 | 34 | if (attr.enable_aggregate_function_null_v2) { | 310 | 34 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 34 | result.release(), argument_types_, attr.is_window_function)); | 312 | 34 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 34 | } | 317 | 34 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 34 | return AggregateFunctionPtr(result.release()); | 319 | 34 | } |
_ZN5doris20creator_without_type42create_unary_arguments_return_not_nullableINS_36AggregateFunctionApproxCountDistinctILNS_13PrimitiveTypeE10EEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS5_IKNS_9IDataTypeEESaISB_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 296 | 4.92k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 4.92k | 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.92k | 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.92k | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 4.92k | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 4.92k | if (have_nullable(argument_types_)) { | 309 | 2.79k | if (attr.enable_aggregate_function_null_v2) { | 310 | 2.79k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 2.79k | result.release(), argument_types_, attr.is_window_function)); | 312 | 2.79k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 2.79k | } | 317 | 4.92k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 4.92k | return AggregateFunctionPtr(result.release()); | 319 | 4.92k | } |
_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.41k | if (attr.enable_aggregate_function_null_v2) { | 310 | 1.41k | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 1.41k | result.release(), argument_types_, attr.is_window_function)); | 312 | 1.41k | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 1.41k | } | 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 | 560 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 297 | 560 | 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 | 560 | 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 | 560 | std::unique_ptr<IAggregateFunction> result(std::make_unique<AggregateFunctionTemplate>( | 307 | 560 | std::forward<TArgs>(args)..., remove_nullable(argument_types_))); | 308 | 560 | if (have_nullable(argument_types_)) { | 309 | 280 | if (attr.enable_aggregate_function_null_v2) { | 310 | 280 | result.reset(new NullableV2T<false, false, AggregateFunctionTemplate>( | 311 | 280 | result.release(), argument_types_, attr.is_window_function)); | 312 | 280 | } else { | 313 | 0 | result.reset(new NullableT<false, false, AggregateFunctionTemplate>( | 314 | 0 | result.release(), argument_types_, attr.is_window_function)); | 315 | 0 | } | 316 | 280 | } | 317 | 560 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 318 | 560 | return AggregateFunctionPtr(result.release()); | 319 | 560 | } |
_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.16k | TArgs&&... args) { |
328 | 2.16k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( |
329 | 2.16k | std::forward<TArgs>(args)..., argument_types_); |
330 | 2.16k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); |
331 | 2.16k | return AggregateFunctionPtr(result.release()); |
332 | 2.16k | } _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 | 450 | TArgs&&... args) { | 328 | 450 | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 450 | std::forward<TArgs>(args)..., argument_types_); | 330 | 450 | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 450 | return AggregateFunctionPtr(result.release()); | 332 | 450 | } |
_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.21k | TArgs&&... args) { | 328 | 1.21k | std::unique_ptr<IAggregateFunction> result = std::make_unique<AggregateFunctionTemplate>( | 329 | 1.21k | std::forward<TArgs>(args)..., argument_types_); | 330 | 1.21k | CHECK_AGG_FUNCTION_SERIALIZED_TYPE(AggregateFunctionTemplate); | 331 | 1.21k | return AggregateFunctionPtr(result.release()); | 332 | 1.21k | } |
_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 | 71.3k | const AggregateFunctionAttr& attr, TArgs&&... args) { |
369 | 71.3k | auto create = [&]<PrimitiveType Ptype>() { |
370 | 70.4k | return creator_without_type::create<typename Class::template T<Ptype>>( |
371 | 70.4k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
372 | 70.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.15k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3.15k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3.15k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 3.15k | }; |
_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 | 8.07k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 8.07k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 8.07k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 8.07k | }; |
_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.35k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2.35k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2.35k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2.35k | }; |
_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 | 325 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 325 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 325 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 325 | }; |
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.21k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.21k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.21k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.21k | }; |
_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 | 399 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 399 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 399 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 399 | }; |
_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 | 137 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 137 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 137 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 137 | }; |
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 | 715 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 715 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 715 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 715 | }; |
_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 | 599 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 599 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 599 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 599 | }; |
_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 | }; |
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_41EEEDav 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 | 460 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 460 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 460 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 460 | }; |
_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 | 459 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 459 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 459 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 459 | }; |
_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 | 459 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 459 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 459 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 459 | }; |
_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 | 913 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 913 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 913 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 913 | }; |
_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.00k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 3.00k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 3.00k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 3.00k | }; |
_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.08k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.08k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.08k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.08k | }; |
_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.48k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.48k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.48k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.48k | }; |
_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.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_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.26k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.26k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.26k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.26k | }; |
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 | 424 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 424 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 424 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 424 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_9ImplArrayEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_25EEEDav Line | Count | Source | 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 | 424 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 424 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 424 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 424 | }; |
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 | 48 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 48 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 48 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 48 | }; |
_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 | 275 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 275 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 275 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 275 | }; |
_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 | 194 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 194 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 194 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 194 | }; |
_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.0k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12.0k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12.0k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12.0k | }; |
_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.01k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4.01k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4.01k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4.01k | }; |
_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 | 206 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 206 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 206 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 206 | }; |
_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 | 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_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 | 114 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 114 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 114 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 114 | }; |
_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 | 32 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 32 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 32 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 32 | }; |
_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 | 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_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.95k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.95k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.95k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.95k | }; |
_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 | 692 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 692 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 692 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 692 | }; |
_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 | 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_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 | 4.92k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 4.92k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 4.92k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 4.92k | }; |
_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 | 560 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 560 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 560 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 560 | }; |
_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.68k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.68k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.68k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.68k | }; |
_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 | 458 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 458 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 458 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 458 | }; |
_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 | 427 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 427 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 427 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 427 | }; |
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 | 448 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 448 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 448 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 448 | }; |
_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 | 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_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 | 447 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 447 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 447 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 447 | }; |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlTnS1_vE_clILS1_9EEEDav Line | Count | Source | 369 | 443 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 443 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 443 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 443 | }; |
_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 | 71.3k | AggregateFunctionPtr result = nullptr; |
374 | 71.3k | auto type = argument_types[define_index]->get_primitive_type(); |
375 | 71.3k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || |
376 | 71.3k | type == PrimitiveType::TYPE_JSONB) { |
377 | 3.10k | type = PrimitiveType::TYPE_VARCHAR; |
378 | 3.10k | } |
379 | | |
380 | 71.3k | ( |
381 | 952k | [&] { |
382 | 952k | if (type == AllowedTypes) { |
383 | 70.4k | result = create.template operator()<AllowedTypes>(); |
384 | 70.4k | } |
385 | 952k | }(), _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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 3.15k | result = create.template operator()<AllowedTypes>(); | 384 | 3.15k | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 50 | result = create.template operator()<AllowedTypes>(); | 384 | 50 | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 8.08k | result = create.template operator()<AllowedTypes>(); | 384 | 8.08k | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 2.35k | result = create.template operator()<AllowedTypes>(); | 384 | 2.35k | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 80 | result = create.template operator()<AllowedTypes>(); | 384 | 80 | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 30 | result = create.template operator()<AllowedTypes>(); | 384 | 30 | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 325 | result = create.template operator()<AllowedTypes>(); | 384 | 325 | } | 385 | 14.0k | }(), |
_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 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 14.0k | }(), |
_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.89k | [&] { | 382 | 1.89k | if (type == AllowedTypes) { | 383 | 102 | result = create.template operator()<AllowedTypes>(); | 384 | 102 | } | 385 | 1.89k | }(), |
_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.88k | [&] { | 382 | 1.88k | if (type == AllowedTypes) { | 383 | 34 | result = create.template operator()<AllowedTypes>(); | 384 | 34 | } | 385 | 1.88k | }(), |
_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.88k | [&] { | 382 | 1.88k | if (type == AllowedTypes) { | 383 | 1.21k | result = create.template operator()<AllowedTypes>(); | 384 | 1.21k | } | 385 | 1.88k | }(), |
_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.88k | [&] { | 382 | 1.88k | if (type == AllowedTypes) { | 383 | 398 | result = create.template operator()<AllowedTypes>(); | 384 | 398 | } | 385 | 1.88k | }(), |
_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.88k | [&] { | 382 | 1.88k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.88k | }(), |
_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.88k | [&] { | 382 | 1.88k | if (type == AllowedTypes) { | 383 | 137 | result = create.template operator()<AllowedTypes>(); | 384 | 137 | } | 385 | 1.88k | }(), |
_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.88k | [&] { | 382 | 1.88k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.88k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 16 | result = create.template operator()<AllowedTypes>(); | 384 | 16 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 715 | result = create.template operator()<AllowedTypes>(); | 384 | 715 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 64 | result = create.template operator()<AllowedTypes>(); | 384 | 64 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 13 | result = create.template operator()<AllowedTypes>(); | 384 | 13 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 598 | result = create.template operator()<AllowedTypes>(); | 384 | 598 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.44k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 10 | result = create.template operator()<AllowedTypes>(); | 384 | 10 | } | 385 | 1.44k | }(), |
_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.45k | [&] { | 382 | 1.45k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.45k | }(), |
_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.45k | [&] { | 382 | 1.45k | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 1.45k | }(), |
_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.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 1.44k | }(), |
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 | 599 | [&] { | 382 | 599 | if (type == AllowedTypes) { | 383 | 36 | result = create.template operator()<AllowedTypes>(); | 384 | 36 | } | 385 | 599 | }(), |
_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 | 598 | [&] { | 382 | 598 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 598 | }(), |
_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 | 599 | [&] { | 382 | 599 | if (type == AllowedTypes) { | 383 | 460 | result = create.template operator()<AllowedTypes>(); | 384 | 460 | } | 385 | 599 | }(), |
_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 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 595 | }(), |
_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 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 595 | }(), |
_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 | 593 | [&] { | 382 | 593 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 593 | }(), |
_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 | 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_ENKUlvE1_clEv Line | Count | Source | 381 | 593 | [&] { | 382 | 593 | if (type == AllowedTypes) { | 383 | 457 | result = create.template operator()<AllowedTypes>(); | 384 | 457 | } | 385 | 593 | }(), |
_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 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 595 | }(), |
_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 | 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_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE2_clEv Line | Count | Source | 381 | 596 | [&] { | 382 | 596 | if (type == AllowedTypes) { | 383 | 33 | result = create.template operator()<AllowedTypes>(); | 384 | 33 | } | 385 | 596 | }(), |
_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 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 459 | result = create.template operator()<AllowedTypes>(); | 384 | 459 | } | 385 | 595 | }(), |
_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 | 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_ENKUlvE_clEv Line | Count | Source | 381 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 35 | result = create.template operator()<AllowedTypes>(); | 384 | 35 | } | 385 | 595 | }(), |
_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.17k | [&] { | 382 | 2.17k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2.17k | }(), |
_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.17k | [&] { | 382 | 2.17k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 2.17k | }(), |
_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.17k | [&] { | 382 | 2.17k | if (type == AllowedTypes) { | 383 | 911 | result = create.template operator()<AllowedTypes>(); | 384 | 911 | } | 385 | 2.17k | }(), |
_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.17k | [&] { | 382 | 2.17k | if (type == AllowedTypes) { | 383 | 347 | result = create.template operator()<AllowedTypes>(); | 384 | 347 | } | 385 | 2.17k | }(), |
_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.17k | [&] { | 382 | 2.17k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 2.17k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 921 | result = create.template operator()<AllowedTypes>(); | 384 | 921 | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 982 | result = create.template operator()<AllowedTypes>(); | 384 | 982 | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 1.20k | result = create.template operator()<AllowedTypes>(); | 384 | 1.20k | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 3.00k | result = create.template operator()<AllowedTypes>(); | 384 | 3.00k | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 1.08k | result = create.template operator()<AllowedTypes>(); | 384 | 1.08k | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 1.48k | result = create.template operator()<AllowedTypes>(); | 384 | 1.48k | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 1.96k | result = create.template operator()<AllowedTypes>(); | 384 | 1.96k | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 894 | result = create.template operator()<AllowedTypes>(); | 384 | 894 | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 30 | result = create.template operator()<AllowedTypes>(); | 384 | 30 | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 1.26k | result = create.template operator()<AllowedTypes>(); | 384 | 1.26k | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 12.8k | }(), |
_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 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 385 | 12.8k | }(), |
_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 | 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_ENKUlvE14_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_ENKUlvE13_clEv Line | Count | Source | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 3 | result = create.template operator()<AllowedTypes>(); | 384 | 3 | } | 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_ENKUlvE12_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_ENKUlvE11_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_ENKUlvE10_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_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 | 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_ENKUlvE7_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_ENKUlvE6_clEv Line | Count | Source | 381 | 434 | [&] { | 382 | 434 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 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_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 | 432 | [&] { | 382 | 432 | if (type == AllowedTypes) { | 383 | 424 | result = create.template operator()<AllowedTypes>(); | 384 | 424 | } | 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_ENKUlvE3_clEv Line | Count | Source | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 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_ENKUlvE2_clEv Line | Count | Source | 381 | 434 | [&] { | 382 | 434 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 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_ENKUlvE1_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_ENKUlvE0_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_ENKUlvE_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_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 | 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_ENKUlvE14_clEv Line | Count | Source | 381 | 430 | [&] { | 382 | 430 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 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_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE13_clEv Line | Count | Source | 381 | 428 | [&] { | 382 | 428 | if (type == AllowedTypes) { | 383 | 1 | result = create.template operator()<AllowedTypes>(); | 384 | 1 | } | 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_ENKUlvE12_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_ENKUlvE11_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_ENKUlvE10_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_ENKUlvE9_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_10ImplWeightEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE8_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_ENKUlvE7_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_ENKUlvE6_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_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 | 429 | [&] { | 382 | 429 | if (type == AllowedTypes) { | 383 | 424 | result = create.template operator()<AllowedTypes>(); | 384 | 424 | } | 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_ENKUlvE3_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_ENKUlvE2_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_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 | 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_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_10ImplWeightEEEJEEESt10shared_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_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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 48 | result = create.template operator()<AllowedTypes>(); | 384 | 48 | } | 385 | 29.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_ENKUlvE16_clEv Line | Count | Source | 381 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 275 | result = create.template operator()<AllowedTypes>(); | 384 | 275 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 194 | result = create.template operator()<AllowedTypes>(); | 384 | 194 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 12.0k | result = create.template operator()<AllowedTypes>(); | 384 | 12.0k | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 4.01k | result = create.template operator()<AllowedTypes>(); | 384 | 4.01k | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 206 | result = create.template operator()<AllowedTypes>(); | 384 | 206 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 50 | result = create.template operator()<AllowedTypes>(); | 384 | 50 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 114 | result = create.template operator()<AllowedTypes>(); | 384 | 114 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 32 | result = create.template operator()<AllowedTypes>(); | 384 | 32 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 36 | result = create.template operator()<AllowedTypes>(); | 384 | 36 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 1.95k | result = create.template operator()<AllowedTypes>(); | 384 | 1.95k | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 692 | result = create.template operator()<AllowedTypes>(); | 384 | 692 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 34 | result = create.template operator()<AllowedTypes>(); | 384 | 34 | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 4.92k | result = create.template operator()<AllowedTypes>(); | 384 | 4.92k | } | 385 | 29.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 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 4.68k | result = create.template operator()<AllowedTypes>(); | 384 | 4.68k | } | 385 | 29.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_ENKUlvE2_clEv Line | Count | Source | 381 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 560 | result = create.template operator()<AllowedTypes>(); | 384 | 560 | } | 385 | 29.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_ENKUlvE1_clEv Line | Count | Source | 381 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 29.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_ENKUlvE0_clEv Line | Count | Source | 381 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 12 | result = create.template operator()<AllowedTypes>(); | 384 | 12 | } | 385 | 29.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_ENKUlvE_clEv Line | Count | Source | 381 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 29.8k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 8 | result = create.template operator()<AllowedTypes>(); | 384 | 8 | } | 385 | 1.75k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 1.75k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 31 | result = create.template operator()<AllowedTypes>(); | 384 | 31 | } | 385 | 1.75k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 1.68k | result = create.template operator()<AllowedTypes>(); | 384 | 1.68k | } | 385 | 1.75k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.75k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 1.75k | }(), |
_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 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 11 | result = create.template operator()<AllowedTypes>(); | 384 | 11 | } | 385 | 1.75k | }(), |
_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 | 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_ENKUlvE4_clEv Line | Count | Source | 381 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 6 | result = create.template operator()<AllowedTypes>(); | 384 | 6 | } | 385 | 499 | }(), |
_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 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 458 | result = create.template operator()<AllowedTypes>(); | 384 | 458 | } | 385 | 499 | }(), |
_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 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 13 | result = create.template operator()<AllowedTypes>(); | 384 | 13 | } | 385 | 499 | }(), |
_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 | 440 | [&] { | 382 | 440 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 440 | }(), |
_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 | 440 | [&] { | 382 | 440 | if (type == AllowedTypes) { | 383 | 10 | result = create.template operator()<AllowedTypes>(); | 384 | 10 | } | 385 | 440 | }(), |
_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 | 441 | [&] { | 382 | 441 | if (type == AllowedTypes) { | 383 | 427 | result = create.template operator()<AllowedTypes>(); | 384 | 427 | } | 385 | 441 | }(), |
_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 | 440 | [&] { | 382 | 440 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 440 | }(), |
_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 | 438 | [&] { | 382 | 438 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 438 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 4 | result = create.template operator()<AllowedTypes>(); | 384 | 4 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 448 | result = create.template operator()<AllowedTypes>(); | 384 | 448 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 21 | result = create.template operator()<AllowedTypes>(); | 384 | 21 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 20 | result = create.template operator()<AllowedTypes>(); | 384 | 20 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 19 | result = create.template operator()<AllowedTypes>(); | 384 | 19 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 0 | result = create.template operator()<AllowedTypes>(); | 384 | 0 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 39 | result = create.template operator()<AllowedTypes>(); | 384 | 39 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 707 | }(), |
_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 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 38 | result = create.template operator()<AllowedTypes>(); | 384 | 38 | } | 385 | 707 | }(), |
_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 | 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_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 | 577 | [&] { | 382 | 577 | if (type == AllowedTypes) { | 383 | 444 | result = create.template operator()<AllowedTypes>(); | 384 | 444 | } | 385 | 577 | }(), |
_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 | 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_ENKUlvE1_clEv Line | Count | Source | 381 | 578 | [&] { | 382 | 578 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 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_ENKUlvE0_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_ENKUlvE_clEv Line | Count | Source | 381 | 577 | [&] { | 382 | 577 | if (type == AllowedTypes) { | 383 | 2 | result = create.template operator()<AllowedTypes>(); | 384 | 2 | } | 385 | 577 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_23AggregateFunctionBinaryENS_14CorrMomentStatEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 457 | [&] { | 382 | 457 | if (type == AllowedTypes) { | 383 | 457 | result = create.template operator()<AllowedTypes>(); | 384 | 457 | } | 385 | 457 | }(), |
_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 | 447 | [&] { | 382 | 447 | if (type == AllowedTypes) { | 383 | 447 | result = create.template operator()<AllowedTypes>(); | 384 | 447 | } | 385 | 447 | }(), |
_ZZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ENKUlvE_clEv Line | Count | Source | 381 | 442 | [&] { | 382 | 443 | if (type == AllowedTypes) { | 383 | 443 | result = create.template operator()<AllowedTypes>(); | 384 | 443 | } | 385 | 442 | }(), |
_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 | 71.3k | ...); |
387 | | |
388 | 71.3k | return result; |
389 | 71.3k | } _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 | 14.0k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 14.0k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 14.0k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 14.0k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 14.0k | }; | 373 | 14.0k | AggregateFunctionPtr result = nullptr; | 374 | 14.0k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 14.0k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 14.0k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 14.0k | ( | 381 | 14.0k | [&] { | 382 | 14.0k | if (type == AllowedTypes) { | 383 | 14.0k | result = create.template operator()<AllowedTypes>(); | 384 | 14.0k | } | 385 | 14.0k | }(), | 386 | 14.0k | ...); | 387 | | | 388 | 14.0k | return result; | 389 | 14.0k | } |
_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.89k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 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 | }; | 373 | 1.89k | AggregateFunctionPtr result = nullptr; | 374 | 1.89k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 1.89k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 1.89k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 1.89k | ( | 381 | 1.89k | [&] { | 382 | 1.89k | if (type == AllowedTypes) { | 383 | 1.89k | result = create.template operator()<AllowedTypes>(); | 384 | 1.89k | } | 385 | 1.89k | }(), | 386 | 1.89k | ...); | 387 | | | 388 | 1.89k | return result; | 389 | 1.89k | } |
_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.44k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 1.44k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.44k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.44k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.44k | }; | 373 | 1.44k | AggregateFunctionPtr result = nullptr; | 374 | 1.44k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 1.44k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 1.44k | type == PrimitiveType::TYPE_JSONB) { | 377 | 566 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 566 | } | 379 | | | 380 | 1.44k | ( | 381 | 1.44k | [&] { | 382 | 1.44k | if (type == AllowedTypes) { | 383 | 1.44k | result = create.template operator()<AllowedTypes>(); | 384 | 1.44k | } | 385 | 1.44k | }(), | 386 | 1.44k | ...); | 387 | | | 388 | 1.44k | return result; | 389 | 1.44k | } |
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 | 598 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 598 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 598 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 598 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 598 | }; | 373 | 598 | AggregateFunctionPtr result = nullptr; | 374 | 598 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 598 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 598 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 598 | ( | 381 | 598 | [&] { | 382 | 598 | if (type == AllowedTypes) { | 383 | 598 | result = create.template operator()<AllowedTypes>(); | 384 | 598 | } | 385 | 598 | }(), | 386 | 598 | ...); | 387 | | | 388 | 598 | return result; | 389 | 598 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitAndDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 595 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 595 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 595 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 595 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 595 | }; | 373 | 595 | AggregateFunctionPtr result = nullptr; | 374 | 595 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 595 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 595 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 595 | ( | 381 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 595 | result = create.template operator()<AllowedTypes>(); | 384 | 595 | } | 385 | 595 | }(), | 386 | 595 | ...); | 387 | | | 388 | 595 | return result; | 389 | 595 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE11create_baseINS_18CurryDirectAndDataINS_24AggregateFunctionBitwiseENS_32AggregateFunctionGroupBitXorDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 595 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 595 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 595 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 595 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 595 | }; | 373 | 595 | AggregateFunctionPtr result = nullptr; | 374 | 595 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 595 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 595 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 595 | ( | 381 | 595 | [&] { | 382 | 595 | if (type == AllowedTypes) { | 383 | 595 | result = create.template operator()<AllowedTypes>(); | 384 | 595 | } | 385 | 595 | }(), | 386 | 595 | ...); | 387 | | | 388 | 595 | return result; | 389 | 595 | } |
_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.18k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 2.18k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 2.18k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 2.18k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 2.18k | }; | 373 | 2.18k | AggregateFunctionPtr result = nullptr; | 374 | 2.18k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 2.18k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 2.18k | type == PrimitiveType::TYPE_JSONB) { | 377 | 402 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 402 | } | 379 | | | 380 | 2.18k | ( | 381 | 2.18k | [&] { | 382 | 2.18k | if (type == AllowedTypes) { | 383 | 2.18k | result = create.template operator()<AllowedTypes>(); | 384 | 2.18k | } | 385 | 2.18k | }(), | 386 | 2.18k | ...); | 387 | | | 388 | 2.18k | return result; | 389 | 2.18k | } |
_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 | 12.8k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 12.8k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 12.8k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 12.8k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 12.8k | }; | 373 | 12.8k | AggregateFunctionPtr result = nullptr; | 374 | 12.8k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 12.8k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 12.8k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 12.8k | ( | 381 | 12.8k | [&] { | 382 | 12.8k | if (type == AllowedTypes) { | 383 | 12.8k | result = create.template operator()<AllowedTypes>(); | 384 | 12.8k | } | 385 | 12.8k | }(), | 386 | 12.8k | ...); | 387 | | | 388 | 12.8k | return result; | 389 | 12.8k | } |
_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 | 433 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 433 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 433 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 433 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 433 | }; | 373 | 433 | AggregateFunctionPtr result = nullptr; | 374 | 433 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 433 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 433 | type == PrimitiveType::TYPE_JSONB) { | 377 | 270 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 270 | } | 379 | | | 380 | 433 | ( | 381 | 433 | [&] { | 382 | 433 | if (type == AllowedTypes) { | 383 | 433 | result = create.template operator()<AllowedTypes>(); | 384 | 433 | } | 385 | 433 | }(), | 386 | 433 | ...); | 387 | | | 388 | 433 | return result; | 389 | 433 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE11create_baseINS_9CurryDataINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 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 | 428 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 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 | }; | 373 | 428 | AggregateFunctionPtr result = nullptr; | 374 | 428 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 429 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 428 | type == PrimitiveType::TYPE_JSONB) { | 377 | 272 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 272 | } | 379 | | | 380 | 428 | ( | 381 | 428 | [&] { | 382 | 428 | if (type == AllowedTypes) { | 383 | 428 | result = create.template operator()<AllowedTypes>(); | 384 | 428 | } | 385 | 428 | }(), | 386 | 428 | ...); | 387 | | | 388 | 428 | return result; | 389 | 428 | } |
_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 | 29.8k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 29.8k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 29.8k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 29.8k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 29.8k | }; | 373 | 29.8k | AggregateFunctionPtr result = nullptr; | 374 | 29.8k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 29.8k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 29.8k | type == PrimitiveType::TYPE_JSONB) { | 377 | 1.53k | type = PrimitiveType::TYPE_VARCHAR; | 378 | 1.53k | } | 379 | | | 380 | 29.8k | ( | 381 | 29.8k | [&] { | 382 | 29.8k | if (type == AllowedTypes) { | 383 | 29.8k | result = create.template operator()<AllowedTypes>(); | 384 | 29.8k | } | 385 | 29.8k | }(), | 386 | 29.8k | ...); | 387 | | | 388 | 29.8k | return result; | 389 | 29.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 | 1.75k | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 1.75k | auto create = [&]<PrimitiveType Ptype>() { | 370 | 1.75k | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 1.75k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 1.75k | }; | 373 | 1.75k | AggregateFunctionPtr result = nullptr; | 374 | 1.75k | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 1.75k | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 1.75k | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 1.75k | ( | 381 | 1.75k | [&] { | 382 | 1.75k | if (type == AllowedTypes) { | 383 | 1.75k | result = create.template operator()<AllowedTypes>(); | 384 | 1.75k | } | 385 | 1.75k | }(), | 386 | 1.75k | ...); | 387 | | | 388 | 1.75k | return result; | 389 | 1.75k | } |
_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 | 499 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 499 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 499 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 499 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 499 | }; | 373 | 499 | AggregateFunctionPtr result = nullptr; | 374 | 499 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 499 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 499 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 499 | ( | 381 | 499 | [&] { | 382 | 499 | if (type == AllowedTypes) { | 383 | 499 | result = create.template operator()<AllowedTypes>(); | 384 | 499 | } | 385 | 499 | }(), | 386 | 499 | ...); | 387 | | | 388 | 499 | return result; | 389 | 499 | } |
_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 | 440 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 440 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 440 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 440 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 440 | }; | 373 | 440 | AggregateFunctionPtr result = nullptr; | 374 | 440 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 441 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 440 | type == PrimitiveType::TYPE_JSONB) { | 377 | 2 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 2 | } | 379 | | | 380 | 440 | ( | 381 | 440 | [&] { | 382 | 440 | if (type == AllowedTypes) { | 383 | 440 | result = create.template operator()<AllowedTypes>(); | 384 | 440 | } | 385 | 440 | }(), | 386 | 440 | ...); | 387 | | | 388 | 440 | return result; | 389 | 440 | } |
_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 | 707 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 707 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 707 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 707 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 707 | }; | 373 | 707 | AggregateFunctionPtr result = nullptr; | 374 | 707 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 707 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 707 | type == PrimitiveType::TYPE_JSONB) { | 377 | 39 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 39 | } | 379 | | | 380 | 707 | ( | 381 | 707 | [&] { | 382 | 707 | if (type == AllowedTypes) { | 383 | 707 | result = create.template operator()<AllowedTypes>(); | 384 | 707 | } | 385 | 707 | }(), | 386 | 707 | ...); | 387 | | | 388 | 707 | return result; | 389 | 707 | } |
_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 | 457 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 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 | }; | 373 | 457 | AggregateFunctionPtr result = nullptr; | 374 | 457 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 457 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 457 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 457 | ( | 381 | 457 | [&] { | 382 | 457 | if (type == AllowedTypes) { | 383 | 457 | result = create.template operator()<AllowedTypes>(); | 384 | 457 | } | 385 | 457 | }(), | 386 | 457 | ...); | 387 | | | 388 | 457 | return result; | 389 | 457 | } |
_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 | 447 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 447 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 447 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 447 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 447 | }; | 373 | 447 | AggregateFunctionPtr result = nullptr; | 374 | 447 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 447 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 447 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 447 | ( | 381 | 447 | [&] { | 382 | 447 | if (type == AllowedTypes) { | 383 | 447 | result = create.template operator()<AllowedTypes>(); | 384 | 447 | } | 385 | 447 | }(), | 386 | 447 | ...); | 387 | | | 388 | 447 | return result; | 389 | 447 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE11create_baseINS_9CurryDataINS_31AggregateFunctionSampCovarianceENS_7PopDataEEEJEEESt10shared_ptrINS_18IAggregateFunctionEERKSt6vectorIS8_IKNS_9IDataTypeEESaISE_EEbRKNS_21AggregateFunctionAttrEDpOT0_ Line | Count | Source | 368 | 442 | const AggregateFunctionAttr& attr, TArgs&&... args) { | 369 | 442 | auto create = [&]<PrimitiveType Ptype>() { | 370 | 442 | return creator_without_type::create<typename Class::template T<Ptype>>( | 371 | 442 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 372 | 442 | }; | 373 | 442 | AggregateFunctionPtr result = nullptr; | 374 | 442 | auto type = argument_types[define_index]->get_primitive_type(); | 375 | 442 | if (type == PrimitiveType::TYPE_CHAR || type == PrimitiveType::TYPE_STRING || | 376 | 442 | type == PrimitiveType::TYPE_JSONB) { | 377 | 0 | type = PrimitiveType::TYPE_VARCHAR; | 378 | 0 | } | 379 | | | 380 | 442 | ( | 381 | 442 | [&] { | 382 | 442 | if (type == AllowedTypes) { | 383 | 442 | result = create.template operator()<AllowedTypes>(); | 384 | 442 | } | 385 | 442 | }(), | 386 | 442 | ...); | 387 | | | 388 | 442 | return result; | 389 | 442 | } |
_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.30k | TArgs&&... args) { |
398 | 3.30k | 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.30k | } else { |
407 | 3.30k | return creator_without_type::create< |
408 | 3.30k | typename Class::template T<InputType, ResultType>>( |
409 | 3.30k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); |
410 | 3.30k | } |
411 | 3.30k | }; 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 | 82 | 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 | 82 | } else { | 407 | 82 | return creator_without_type::create< | 408 | 82 | typename Class::template T<InputType, ResultType>>( | 409 | 82 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 82 | } | 411 | 82 | }; |
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.21k | 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.21k | } else { | 407 | 1.21k | return creator_without_type::create< | 408 | 1.21k | typename Class::template T<InputType, ResultType>>( | 409 | 1.21k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 1.21k | } | 411 | 1.21k | }; |
_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 | 952 | 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 | 952 | } else { | 407 | 952 | return creator_without_type::create< | 408 | 952 | typename Class::template T<InputType, ResultType>>( | 409 | 952 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 952 | } | 411 | 952 | }; |
_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 | 110 | 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 | 110 | } else { | 407 | 110 | return creator_without_type::create< | 408 | 110 | typename Class::template T<InputType, ResultType>>( | 409 | 110 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 110 | } | 411 | 110 | }; |
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 | 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 | }; |
_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 | 502 | 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 | 502 | } else { | 407 | 502 | return creator_without_type::create< | 408 | 502 | typename Class::template T<InputType, ResultType>>( | 409 | 502 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 502 | } | 411 | 502 | }; |
_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.30k | AggregateFunctionPtr result = nullptr; |
413 | 3.30k | auto type = argument_types[define_index]->get_primitive_type(); |
414 | | |
415 | 3.30k | ( |
416 | 13.2k | [&] { |
417 | 13.2k | if (type == AllowedTypes) { |
418 | 3.30k | static_assert(is_decimalv3(AllowedTypes)); |
419 | 3.30k | auto call = [&](const auto& type) -> bool { |
420 | 3.30k | using DispatchType = std::decay_t<decltype(type)>; |
421 | 3.30k | result = |
422 | 3.30k | create.template operator()<AllowedTypes, DispatchType::PType>(); |
423 | 3.30k | return true; |
424 | 3.30k | }; 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 | 82 | auto call = [&](const auto& type) -> bool { | 420 | 82 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 82 | result = | 422 | 82 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 82 | return true; | 424 | 82 | }; |
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.21k | auto call = [&](const auto& type) -> bool { | 420 | 1.21k | using DispatchType = std::decay_t<decltype(type)>; | 421 | 1.21k | result = | 422 | 1.21k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 1.21k | return true; | 424 | 1.21k | }; |
_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 | 952 | auto call = [&](const auto& type) -> bool { | 420 | 952 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 952 | result = | 422 | 952 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 952 | return true; | 424 | 952 | }; |
_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 | 110 | auto call = [&](const auto& type) -> bool { | 420 | 110 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 110 | result = | 422 | 110 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 110 | return true; | 424 | 110 | }; |
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 | 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 | }; |
_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 | 502 | auto call = [&](const auto& type) -> bool { | 420 | 502 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 502 | result = | 422 | 502 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 502 | return true; | 424 | 502 | }; |
_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.30k | 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.30k | } |
433 | 13.2k | }(), _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.38k | [&] { | 417 | 2.38k | if (type == AllowedTypes) { | 418 | 82 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 82 | auto call = [&](const auto& type) -> bool { | 420 | 82 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 82 | result = | 422 | 82 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 82 | return true; | 424 | 82 | }; | 425 | 82 | 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 | 82 | } | 433 | 2.38k | }(), |
_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.38k | [&] { | 417 | 2.38k | if (type == AllowedTypes) { | 418 | 1.23k | static_assert(is_decimalv3(AllowedTypes)); | 419 | 1.23k | auto call = [&](const auto& type) -> bool { | 420 | 1.23k | using DispatchType = std::decay_t<decltype(type)>; | 421 | 1.23k | result = | 422 | 1.23k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 1.23k | return true; | 424 | 1.23k | }; | 425 | 1.23k | 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.23k | } | 433 | 2.38k | }(), |
_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.38k | [&] { | 417 | 2.38k | if (type == AllowedTypes) { | 418 | 962 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 962 | auto call = [&](const auto& type) -> bool { | 420 | 962 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 962 | result = | 422 | 962 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 962 | return true; | 424 | 962 | }; | 425 | 962 | 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 | 962 | } | 433 | 2.38k | }(), |
_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.38k | [&] { | 417 | 2.38k | if (type == AllowedTypes) { | 418 | 110 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 110 | auto call = [&](const auto& type) -> bool { | 420 | 110 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 110 | result = | 422 | 110 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 110 | return true; | 424 | 110 | }; | 425 | 110 | 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 | 110 | } | 433 | 2.38k | }(), |
_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 | 722 | [&] { | 417 | 722 | 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 | 722 | }(), |
_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 | 722 | [&] { | 417 | 722 | if (type == AllowedTypes) { | 418 | 504 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 504 | auto call = [&](const auto& type) -> bool { | 420 | 504 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 504 | result = | 422 | 504 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 504 | return true; | 424 | 504 | }; | 425 | 504 | 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 | 504 | } | 433 | 722 | }(), |
_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 | 722 | [&] { | 417 | 722 | 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 | 722 | }(), |
_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 | 722 | [&] { | 417 | 722 | 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 | 722 | }(), |
_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.30k | ...); |
435 | | |
436 | 3.30k | return result; |
437 | 3.30k | } _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.38k | TArgs&&... args) { | 398 | 2.38k | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 2.38k | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 2.38k | ResultType < InputType) { | 401 | 2.38k | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 2.38k | "agg function {} error, arg type {}, result type {}", name, | 403 | 2.38k | argument_types[define_index]->get_name(), | 404 | 2.38k | result_type->get_name()); | 405 | 2.38k | return nullptr; | 406 | 2.38k | } else { | 407 | 2.38k | return creator_without_type::create< | 408 | 2.38k | typename Class::template T<InputType, ResultType>>( | 409 | 2.38k | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 2.38k | } | 411 | 2.38k | }; | 412 | 2.38k | AggregateFunctionPtr result = nullptr; | 413 | 2.38k | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 2.38k | ( | 416 | 2.38k | [&] { | 417 | 2.38k | if (type == AllowedTypes) { | 418 | 2.38k | static_assert(is_decimalv3(AllowedTypes)); | 419 | 2.38k | auto call = [&](const auto& type) -> bool { | 420 | 2.38k | using DispatchType = std::decay_t<decltype(type)>; | 421 | 2.38k | result = | 422 | 2.38k | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 2.38k | return true; | 424 | 2.38k | }; | 425 | 2.38k | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 2.38k | throw doris::Exception( | 427 | 2.38k | ErrorCode::INTERNAL_ERROR, | 428 | 2.38k | "agg function {} error, arg type {}, result type {}", name, | 429 | 2.38k | argument_types[define_index]->get_name(), | 430 | 2.38k | result_type->get_name()); | 431 | 2.38k | } | 432 | 2.38k | } | 433 | 2.38k | }(), | 434 | 2.38k | ...); | 435 | | | 436 | 2.38k | return result; | 437 | 2.38k | } |
_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 | 722 | TArgs&&... args) { | 398 | 722 | auto create = [&]<PrimitiveType InputType, PrimitiveType ResultType>() { | 399 | 722 | if constexpr (is_decimalv3(InputType) && is_decimalv3(ResultType) && | 400 | 722 | ResultType < InputType) { | 401 | 722 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, | 402 | 722 | "agg function {} error, arg type {}, result type {}", name, | 403 | 722 | argument_types[define_index]->get_name(), | 404 | 722 | result_type->get_name()); | 405 | 722 | return nullptr; | 406 | 722 | } else { | 407 | 722 | return creator_without_type::create< | 408 | 722 | typename Class::template T<InputType, ResultType>>( | 409 | 722 | argument_types, result_is_nullable, attr, std::forward<TArgs>(args)...); | 410 | 722 | } | 411 | 722 | }; | 412 | 722 | AggregateFunctionPtr result = nullptr; | 413 | 722 | auto type = argument_types[define_index]->get_primitive_type(); | 414 | | | 415 | 722 | ( | 416 | 722 | [&] { | 417 | 722 | if (type == AllowedTypes) { | 418 | 722 | static_assert(is_decimalv3(AllowedTypes)); | 419 | 722 | auto call = [&](const auto& type) -> bool { | 420 | 722 | using DispatchType = std::decay_t<decltype(type)>; | 421 | 722 | result = | 422 | 722 | create.template operator()<AllowedTypes, DispatchType::PType>(); | 423 | 722 | return true; | 424 | 722 | }; | 425 | 722 | if (!dispatch_switch_decimalv3(result_type->get_primitive_type(), call)) { | 426 | 722 | throw doris::Exception( | 427 | 722 | ErrorCode::INTERNAL_ERROR, | 428 | 722 | "agg function {} error, arg type {}, result type {}", name, | 429 | 722 | argument_types[define_index]->get_name(), | 430 | 722 | result_type->get_name()); | 431 | 722 | } | 432 | 722 | } | 433 | 722 | }(), | 434 | 722 | ...); | 435 | | | 436 | 722 | return result; | 437 | 722 | } |
_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 | 31.0k | const AggregateFunctionAttr& attr) { |
444 | 31.0k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, |
445 | 31.0k | result_is_nullable, attr); |
446 | 31.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 | 14.0k | const AggregateFunctionAttr& attr) { | 444 | 14.0k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 14.0k | result_is_nullable, attr); | 446 | 14.0k | } |
_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.88k | const AggregateFunctionAttr& attr) { | 444 | 1.88k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 1.88k | result_is_nullable, attr); | 446 | 1.88k | } |
_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 | 12.8k | const AggregateFunctionAttr& attr) { | 444 | 12.8k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 12.8k | result_is_nullable, attr); | 446 | 12.8k | } |
_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 | 1.76k | const AggregateFunctionAttr& attr) { | 444 | 1.76k | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 1.76k | result_is_nullable, attr); | 446 | 1.76k | } |
_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 | 499 | const AggregateFunctionAttr& attr) { | 444 | 499 | return create_base<CurryDirect<AggregateFunctionTemplate>>(argument_types, | 445 | 499 | result_is_nullable, attr); | 446 | 499 | } |
|
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.30k | const AggregateFunctionAttr& attr) { |
456 | 3.30k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( |
457 | 3.30k | name, argument_types, result_type, result_is_nullable, attr); |
458 | 3.30k | } _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.38k | const AggregateFunctionAttr& attr) { | 456 | 2.38k | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 2.38k | name, argument_types, result_type, result_is_nullable, attr); | 458 | 2.38k | } |
_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 | 722 | const AggregateFunctionAttr& attr) { | 456 | 722 | return create_base_with_result_type<CurryDirectWithResultType<AggregateFunctionTemplate>>( | 457 | 722 | name, argument_types, result_type, result_is_nullable, attr); | 458 | 722 | } |
_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 | 32.9k | static AggregateFunctionPtr create(TArgs&&... args) { |
462 | 32.9k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); |
463 | 32.9k | } _ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7EEE6createINS_32AggregateFunctionDistinctNumericEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaIS9_EERKbRKNS_21AggregateFunctionAttrERKS6_INS_18IAggregateFunctionEEEEESK_DpOT0_ Line | Count | Source | 461 | 2.18k | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 2.18k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 2.18k | } |
_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 | 29.8k | static AggregateFunctionPtr create(TArgs&&... args) { | 462 | 29.8k | return create_base<CurryDirect<AggregateFunctionTemplate>>(std::forward<TArgs>(args)...); | 463 | 29.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.58k | static AggregateFunctionPtr create(TArgs&&... args) { |
478 | 3.58k | return create_base<CurryData<AggregateFunctionTemplate, Data>>( |
479 | 3.58k | std::forward<TArgs>(args)...); |
480 | 3.58k | } _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 | 433 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 433 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 433 | std::forward<TArgs>(args)...); | 480 | 433 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE3ELS1_4ELS1_5ELS1_6ELS1_7ELS1_8ELS1_9ELS1_28ELS1_29ELS1_30ELS1_35ELS1_10ELS1_25ELS1_26ELS1_42ELS1_36ELS1_37EEE6createINS_26AggregateFunctionTopNArrayENS_21ImplWeightWithDefaultEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 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 | 441 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 441 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 441 | std::forward<TArgs>(args)...); | 480 | 441 | } |
_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 | 707 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 707 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 707 | std::forward<TArgs>(args)...); | 480 | 707 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_23AggregateFunctionBinaryENS_14CorrMomentStatEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 457 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 457 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 457 | std::forward<TArgs>(args)...); | 480 | 457 | } |
_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 | 447 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 447 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 447 | std::forward<TArgs>(args)...); | 480 | 447 | } |
_ZN5doris27creator_with_type_list_baseILi0EJLNS_13PrimitiveTypeE9EEE6createINS_31AggregateFunctionSampCovarianceENS_7PopDataEJRKSt6vectorISt10shared_ptrIKNS_9IDataTypeEESaISA_EERKbRKNS_21AggregateFunctionAttrEEEES7_INS_18IAggregateFunctionEEDpOT1_ Line | Count | Source | 477 | 443 | static AggregateFunctionPtr create(TArgs&&... args) { | 478 | 443 | return create_base<CurryData<AggregateFunctionTemplate, Data>>( | 479 | 443 | std::forward<TArgs>(args)...); | 480 | 443 | } |
|
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 | 599 | const AggregateFunctionAttr& attr) { | 505 | 599 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 599 | argument_types, result_is_nullable, attr); | 507 | 599 | } |
_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 | 595 | const AggregateFunctionAttr& attr) { | 505 | 595 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 595 | argument_types, result_is_nullable, attr); | 507 | 595 | } |
_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 | 595 | const AggregateFunctionAttr& attr) { | 505 | 595 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 506 | 595 | argument_types, result_is_nullable, attr); | 507 | 595 | } |
_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.04k | static AggregateFunctionPtr create(TArgs&&... args) { |
512 | 2.04k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( |
513 | 2.04k | std::forward<TArgs>(args)...); |
514 | 2.04k | } _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.45k | static AggregateFunctionPtr create(TArgs&&... args) { | 512 | 1.45k | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 513 | 1.45k | std::forward<TArgs>(args)...); | 514 | 1.45k | } |
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 | 577 | static AggregateFunctionPtr create(TArgs&&... args) { | 512 | 577 | return create_base<CurryDirectAndData<AggregateFunctionTemplate, Data>>( | 513 | 577 | std::forward<TArgs>(args)...); | 514 | 577 | } |
|
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" |